﻿.input-group-text {
    background: #0d6efd;
    color: white;
}

/* Desktop only - Reduce search bar width */
@media (min-width: 768px) {
    .search-container {
        max-width: 800px; /* Adjust this value to your preference */
        width: 100%;
    }

    /* Alternative approaches - uncomment one if preferred */
    /*
    .input-group {
        width: 70%;
        max-width: 500px;
        margin: 0 auto;
    }
    */
}

@media (max-width: 767.98px) {
    .input-group {
        flex-direction: column;
        box-shadow: none;
        gap: 1.5rem;
        width: 100%; /* Keep full width on mobile */
    }

        .input-group > * {
            border-radius: 0.5rem !important;
            margin-bottom: 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            width: 100% !important;
            flex: none !important;
        }
    /* Make placeholders more visible */
    .form-control::placeholder {
        font-size: 1rem;
        color: #6c757d;
        font-weight: 500;
    }
    .input-group-text {
        display: none !important;
    }
}
