/* Doctor schedule search page (gb2) */
.schedule-page-breadcrumb {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #e8eef5;
    font-size: 13px;
}

.schedule-page-breadcrumb a {
    color: #1565c0;
    text-decoration: none;
}

.schedule-page-breadcrumb span {
    color: #888;
    margin: 0 6px;
}

.schedule-page-header {
    padding: 32px 0 24px;
    background: #fff;
}

.schedule-page-header h1 {
    color: #0a6b5a;
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 10px;
}

.schedule-page-header p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 900px;
}

.schedule-filters {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    padding: 20px 22px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(10, 61, 107, .04);
}

.schedule-filters .form-group {
    margin-bottom: 14px;
}

.schedule-filters label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0a6b5a;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.schedule-filters .form-control {
    height: 40px;
    border-radius: 6px;
    border-color: #d8e3ef;
    box-shadow: none;
}

.schedule-per-page {
    max-width: 120px;
}

.schedule-results {
    padding-bottom: 48px;
}

.schedule-specialty-title {
    color: #0a6b5a;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px;
}

.schedule-doctor-row {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(10, 61, 107, .04);
}

.schedule-doctor-top {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.schedule-doctor-photo {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    background: #eef4fc;
    border: 2px solid #e8eef5;
}

.schedule-doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-doctor-photo .fa {
    width: 88px;
    height: 88px;
    line-height: 88px;
    text-align: center;
    font-size: 36px;
    color: #9ab5c9;
}

.schedule-doctor-info {
    flex: 1;
    min-width: 0;
}

.schedule-doctor-info h3 {
    margin: 0 0 6px;
    color: #0a3d6b;
    font-size: 20px;
    font-weight: 700;
}

.schedule-doctor-meta {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
}

.schedule-doctor-meta a {
    color: #0a8f7a;
    font-weight: 600;
}

.schedule-appointment-btn {
    display: inline-block;
    background: #0a8f7a;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .4px;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
}

.schedule-appointment-btn:hover {
    background: #087566;
    color: #fff;
    text-decoration: none;
}

.schedule-table-wrap {
    overflow-x: auto;
}

.schedule-week-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.schedule-week-table th,
.schedule-week-table td {
    border: 1px solid #e8eef5;
    padding: 10px 8px;
    text-align: center;
    font-size: 12px;
    vertical-align: top;
}

.schedule-week-table th {
    background: #f7fafd;
    color: #0a6b5a;
    font-weight: 700;
}

.schedule-week-table td {
    color: #444;
    line-height: 1.45;
}

.schedule-week-table .empty-slot {
    color: #bbb;
}

.schedule-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.schedule-pagination a,
.schedule-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d8e3ef;
    color: #0a6b5a;
    text-decoration: none;
    font-weight: 600;
}

.schedule-pagination .active {
    background: #0a8f7a;
    border-color: #0a8f7a;
    color: #fff;
}

.schedule-empty {
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

@media (max-width: 767px) {
    .schedule-doctor-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
