/* Doctors Page Styles */

.doctors-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 3.5rem 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.doctors-hero h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.doctors-hero p {
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Filter Bar */
.doctors-filter {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
}

.doctors-filter .form-select,
.doctors-filter .form-control {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
}

.doctors-filter .form-select:focus,
.doctors-filter .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.doctors-filter .btn-search {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.doctors-filter .btn-search:hover {
    background: var(--primary-dark);
    color: white;
}

/* Doctor Card */
.doctor-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.doctor-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-secondary);
}

.doctor-card-body {
    padding: 1.3rem;
    text-align: center;
}

.doctor-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.doctor-specialty {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.doctor-info {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.doctor-info span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.doctor-rating {
    color: var(--warning);
}

.doctor-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.8rem;
}

.btn-book {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    width: 100%;
    transition: opacity 0.3s ease;
}

.btn-book:hover {
    opacity: 0.9;
    color: white;
}

/* Empty State */
.doctors-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-secondary);
}

.doctors-empty i {
    font-size: 3rem;
    color: var(--border-light);
    margin-bottom: 1rem;
}

/* Pagination */
.doctors-pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .doctors-hero h1 {
        font-size: 1.8rem;
    }

    .doctors-filter .row > div {
        margin-bottom: 0.8rem;
    }
}
