/* Search Placeholder Component Styles */

/* Match editor styles exactly */
.search-placeholder-container input::placeholder {
    font-family: 'Open Sans', sans-serif;
}

/* Focus states matching editor */
.search-where-group:focus-within,
.search-when-group:focus-within {
    outline: 1px solid #F97316 !important;
    outline-offset: -1px !important;
}

/* Remove default date input styling */
.search-when-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

/* Icon hover effects */
.search-icon svg:hover path,
.calendar-icon svg:hover path {
    stroke: #F97316;
    transition: stroke 0.2s ease;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .search-placeholder-container {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 10px !important;
        height: auto !important;
    }
    
    .search-where-group,
    .search-when-group {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    .separator {
        display: none !important;
    }
}