/* Multi-Select Dropdown Styles */
.multiselect-container {
    position: relative;
    width: 100%;
}

.multiselect-btn {
    width: 100%;
    padding: 10px 15px;
    background: #fdfdfd;
    /* Light Grey Background */
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.2s;
    font-weight: 600;
}

.multiselect-btn:hover {
    background: #f7fafc;
    border-color: #a0aec0;
}

.multiselect-btn::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: #a0aec0;
    transition: transform 0.3s;
}

.multiselect-container.active .multiselect-btn::after {
    transform: rotate(180deg);
}

.multiselect-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    z-index: 100;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    padding: 5px 0;
}

.multiselect-container.active .multiselect-dropdown {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.multiselect-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.9rem;
    color: #2d3748;
}

.multiselect-option:hover {
    background-color: #f7fafc;
}

.multiselect-option input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.multiselect-search {
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.multiselect-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.9rem;
}