﻿.dropdown-container {
    display: flex;
    width: 100%;
    flex-direction: column; /* Stacks the dropdowns vertically */
    gap: 5px; /* Spacing between each dropdown */
    /*max-width: 600px;*/ /* Limit the width of the container */
    /* margin: 0px auto;
    padding: 20px;*/
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;*/
    background: #fff;
}

    .dropdown-container label {
        font-weight: bold;
        font-size: 14px;
        color: #333;
        margin-bottom: 8px; /* Adds space between label and dropdown */
        width: 150px; /* Sets a fixed width for labels */
        display: inline-block; /* Ensures label is displayed inline */
    }

    .dropdown-container select {
        width: 100%; /* Ensures the dropdown takes the remaining space */
        padding: 10px 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        transition: all 0.3s ease;
        margin-left: 0px; /* Adds space between label and dropdown */
    }

select:focus {
    border-color: #0078d7;
    box-shadow: 0 0 4px rgba(0, 120, 215, 0.5);
    outline: none;
}

select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}
/* radio button start ------------------------------- */
.radio-button-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    padding: 8px 0;
    width: 100%;
}

    .radio-button-group label {
        flex: 1 1 calc(33.333% - 11px); /* Three items with spacing */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 10px 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #f9f9f9;
        cursor: pointer;
        text-align: center;
        transition: background 0.3s ease, border-color 0.3s ease;
        box-sizing: border-box;
    }

    .radio-button-group input[type="radio"] {
        accent-color: #0078d7;
    }

    .radio-button-group label:hover {
        background-color: #f0f0f0;
        border-color: #0078d7;
    }

@media (max-width: 500px) {
    .radio-button-group label {
        flex: 1 1 100%; /* Stack in mobile */
    }
}

/* radio button end --------------------------------*/
/* Styling for the textboxes and button */
.input-adv-group {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 5px;
    width: 100%;
}

.input-container {
    display: flex;
    flex-direction: column;
    width: 48%; /* Adjust for two items in a row */
}

    .input-container label {
        font-size: 14px;
        font-weight:200;
        margin-bottom: 0px;
        color:black;
    }

    .input-container input[type="text"] {
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
        transition: border 0.3s ease;
    }

        .input-container input[type="text"]:focus {
            border-color: #0078d7;
            box-shadow: 0 0 4px rgba(0, 120, 215, 0.5);
            outline: none;
        }

.search-button-2 {
    width:100%;
    background-color: #fdb813;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .search-button-2:hover {
        background-color: #e6a50f;
    }