/* ↓ Algemene styling ↓ */

h1, h2 {
    padding: 0;
}

/* ↑ Algemene styling ↑ */
.legend_title{
    margin-bottom: 3px;
    font-weight: bold;
}

.table_header_verzendingen{
    color: black;
    width: 100%;
}

.img{
    background-color: gray;
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    border-radius: 5px;
}

.content_title{ 
   font-weight: 600;
   margin-top: 10px;
}

.content_textarea {
    margin-bottom: 4vh;
}


/* Wrapper for Filters in One Form with Two Columns */
.filters_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Styling for the Filter Sections */
.table_header_verzendingen {
    display: flex;
    flex-direction: column;
}

.table_header_verzendingen h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.table_header_verzendingen select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Filter Button */
.btn_filter, .btn_accept, .claim-wens {
    padding: 8px 12px;
    background-color: #9b7719;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width:100%;
}

.btn_selected {
    background-color: #581366;
}

.btn_filter {
    grid-column: span 2;
}

.claim-wens {
    margin-top: 10px;
}

.claim-wens.disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn_filter:hover, .btn_accept:hover, .claim-wens:hover {
    background-color: #876715;
}

/* Claim Button Styling */
.holder-claim-wens {
    text-align: center;
    margin-bottom: 20px;
}

/* Wensen Overview Styling */
.overview_row {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.table_verzendingen {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.table_content_verzendingen {
    padding: 15px;
    background-color: #fdfdfd;
    color: black;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    height:100%;
}

.content_row2 {
    display: flex; 
    flex-direction: column;   
    height: 100%;
}

.content_row2 .btn_accept {
    margin-top: auto;
}

.content_title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0px;
}

.content_textarea {
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: 10px;
    line-height: 1.6em;
}

/* No Content Message */
.table_no_content {
    text-align: center;
    font-size: 16px;
    padding: 20px;
    color: #777;
}

.overview_legend { 
    position: sticky;
    top:80px;
    background-color: white;
    color: black;
    padding: 10px 20px;
    width: 80%;
    border-radius: 6px;
    align-self: flex-start;
    margin-left: auto;
    margin-right: auto;
}

.overview_form-column{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wens-voltooiing-container {
    background-color:white;
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0px;
}

.wens-voltooid-h2 {
    margin-bottom: 20px;
    font-size: 32px!important;
    color: #9B7719!important;
}

@media only screen and (max-width: 600px) {

    .table_content_verzendingen {
        border-radius: 6px 6px 0px 0px;
        width: 100%;
        border-right: unset;
    }

    .table_header_verzendingen {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        background-color: #ffffff;
    }

    .table_accept-form {
        border-radius: 0px 0px 6px 6px;
        width: 100%;
        margin-bottom: 22px;
    }

    .content_row1 {
        font-size: 18px;
        margin-bottom: 6px;
        text-align: center;
    }

    .content_row2 {
        font-size: 14px;
    }

    .categorie_option {
        width: 80%;
        padding: 10px;
    }

    .status_option {
        width: 80%;
        padding: 10px
    }

    .filters_wrapper {
        display: unset;
        grid-template-columns: unset;
        gap: 20px;
        border: none;
        background-color: unset !important;
    }

    .btn_filter {
        margin-bottom: 35px;
    }

    .overview_row {
        grid-template-columns: unset;
    }

    .overview_form-column {
        grid-template-columns: unset;
    }
}