/* Doctor Search & Filter Bar Styles */
.doctor-filter-section {
    padding: 10px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.filter-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 100%;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color, #007bff);
    font-size: 18px;
}

.search-box input {
    width: 100%;
    padding: 10px 20px 10px 55px;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-size: 16px;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color, #007bff);
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.15);
}

.filter-dropdown {
    position: relative;
    min-width: 250px;
}

.filter-dropdown select {
    width: 100%;
    padding: 10px 40px 10px 25px;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    font-size: 16px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-dropdown i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.filter-dropdown select:focus {
    outline: none;
    border-color: var(--primary-color, #007bff);
}

@media (max-width: 768px) {
    .filter-bar-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }
}

/* Specific styling for the grid to handle filtering */
.doctor-card-item.hidden {
    display: none !important;
}

.no-results-found {
    width: 100%;
    text-align: center;
    padding: 50px 0;
    display: none;
}

.no-results-found img {
    max-width: 200px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results-found h3 {
    color: #6c757d;
    font-weight: 500;
}