/* Search Container */
.search-container {
    padding: 0 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.search-form {
    width: 100%;
}

/* Input Group */
.search-form .input-group {
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    overflow: hidden;
}

.search-form .form-control {
    height: 38px;
    border: none;
    border-radius: 0;
}

/* Desktop Filters */
.search-form .input-group .d-md-flex {
    background: #fff;
    border: none;
    border-left: 1px solid #ced4da;
    border-radius: 0;
    padding: 0 10px;
}

.search-form .input-group .form-control-sm {
    height: 30px;
    font-size: 0.875rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* Mobile Filter Button */
.search-form .btn-outline-secondary {
    border: none;
    border-radius: 0;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.search-form .btn-outline-secondary:hover {
    background-color: #e2e6ea;
}

/* Remove box shadow on focus */
.search-form .form-control:focus,
.search-form .form-control-sm:focus {
    box-shadow: none;
    border-color: #ced4da;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .search-container {
        padding: 0 6px;
    }
    
    .search-form .form-control {
        font-size: 0.9rem;
    }
}

/* Ensure the search bar is properly aligned in the navbar */
.navbar-collapse {
    flex-grow: 1;
}
