/* Search Box Styles */
.sort-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: #fff;
}

.search-input:focus {
    border-color: #00b96b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 185, 107, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 0.9rem;
    pointer-events: none;
}

.sort-select-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .sort-options {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: 100%;
    }
    
    .search-box {
        width: 100%;
    }
    
    .sort-select-wrapper {
        justify-content: space-between;
    }
}