/* Doctor Schedule Page Styles */
.date-selector-wrapper {
    background: #fff;
    border: 1px solid var(--raha-border-light);
}

#datepicker { border-radius: 20px 0 0 20px; border-right: 0;}
#datepicker:focus { box-shadow: none;}
[dir="rtl"] #datepicker { border-radius: 0 20px 20px 0; border-left: 0; border-right: 1px solid #ced4da;}

.date-strip-container {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px; /* Space for scrollbar */
    gap: 10px;
}
.date-button {
    flex: 0 0 90px;
    padding: 10px;
    border: 1px solid var(--raha-border-light);
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.date-button .day-name { font-size: 0.9rem; }
.date-button .day-number { font-size: 1.2rem; font-weight: bold; }

.date-button:hover, .date-button.active {
    background-color: var(--raha-turquoise);
    color: white;
    border-color: var(--raha-turquoise);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.doctor-card-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.doctor-card-header { border-bottom: 1px solid var(--raha-border-light); }
.doctor-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--raha-turquoise);
}
.doctor-price h4 { color: var(--raha-dark-blue); }

.slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.btn-slot {
    background-color: #e9fbf8;
    color: var(--raha-dark-blue);
    border: 1px solid var(--raha-turquoise);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.btn-slot:hover {
    background-color: var(--raha-turquoise);
    color: white;
    transform: scale(1.05);
}