/* 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: 767px) {
    .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;

        .search-icon , .calendar-icon {
            margin-left: 8px;
           }   

    }

    .search-where-group {
       
        position: relative;
        overflow: visible;
        &::after
        {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--Neutral-30, #E8E8E8);
            /* top: 10px; */
            bottom: -10px;
            /* margin-bottom: -20px; */
        }
    
    .separator {
        display: none !important;
    }
}