/* Mobile Search Modal Styles */
#searchModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#searchModal .modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 1.2rem 1.5rem;
    background-color: #fff;
    border-radius: 16px 16px 0 0;
}

#searchModal .modal-title {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

#searchModal .modal-body {
    padding: 1.5rem;
    background-color: #fff;
}

#searchModal .form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#searchModal .form-control,
#searchModal .form-select {
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    background-color: #f8f9fa;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#searchModal .form-control:focus,
#searchModal .form-select:focus {
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

#searchModal .modal-footer {
    border-top: none;
    padding: 1rem 1.5rem 1.5rem;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
}

#searchModal .btn {
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#searchModal .btn-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

#searchModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
}

#searchModal .btn-secondary {
    background-color: #f1f3f5;
    color: #6c757d;
    border: none;
}

#searchModal .btn-secondary:hover {
    background-color: #e9ecef;
    color: #495057;
}

/* Mobile Specific Adjustments */
@media (max-width: 576px) {
    #searchModal .modal-dialog {
        margin: 0;
        height: 100%;
    }

    #searchModal .modal-content {
        height: 100%;
        border-radius: 0;
    }

    #searchModal .modal-header {
        border-radius: 0;
        padding: 1rem;
    }

    #searchModal .modal-body {
        padding: 1rem;
    }

    #searchModal .modal-footer {
        border-radius: 0;
        padding: 1rem;
        position: sticky;
        bottom: 85px;
        background: #fff;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    #searchModal .btn {
        width: 100%;
        margin: 5px 0;
    }

    #searchModal .modal-footer {
        flex-direction: column-reverse;
    }
}