/* Site Dropdown Plugin Styles */
.site-dropdown-container {
}

.site-dropdown-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.site-dropdown-select {
    background: #ffffff;
    border: none;
    border-bottom: 2px solid #E5E7EB;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #374151;
    border-radius: 4px;
    min-width: 200px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.site-dropdown-select:hover {
    border-bottom-color: #8B5CF6;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.1);
}

.site-dropdown-select:focus {
    outline: none;
    border-bottom-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.site-dropdown-select option {
    padding: 10px;
    background: #ffffff;
    color: #374151;
    font-size: 16px;
}

.site-dropdown-select option:hover {
    background: #F3F4F6;
}

/* Custom dropdown arrow */
.site-dropdown-wrapper {
    position: relative;
}

.site-dropdown-wrapper::after {
    content: '▼';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6B7280;
    pointer-events: none;
    font-size: 12px;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-dropdown-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .site-dropdown-select {
        min-width: 100%;
        margin-bottom: 10px;
    }
    
    .bengali-dropdown-container {
        padding: 15px;
    }
}

/* Bengali font support */
.site-dropdown-select {
    font-family: 'Noto Sans Bengali', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Loading state */
.site-dropdown-select.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success state */
.site-dropdown-select.success {
    border-bottom-color: #10B981;
    padding: 5px 16px;
}

/* Error state */
.site-dropdown-select.error {
    border-bottom-color: #EF4444;
}

/* Additional dropdowns styling */
.additional-dropdowns {
    display: flex !important;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.additional-dropdowns .site-dropdown-select {
    min-width: 180px;
}

/* Animation for showing/hiding additional dropdowns */
.additional-dropdowns {
    transition: all 0.3s ease;
}

.additional-dropdowns[style*="display: none"] {
    opacity: 0;
    transform: translateY(-10px);
}

.additional-dropdowns:not([style*="display: none"]) {
    opacity: 1;
    transform: translateY(0);
}
