h2.doctor_name {
    margin-bottom: 20px;
}
.doctor_schedule {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.schedule_date {
    flex: 1;
}
.schedule_time {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    flex: 6;
}

/* popup */
::-webkit-scrollbar {
    width: 6px; /* Lățimea scrollbar-ului vertical */
}
::-webkit-scrollbar-thumb {
    background-color: var(--global-palette1); /* Culoarea scrollbar-ului */
    border-radius: 10px; /* Colțuri rotunjite */
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--global-palette2); /* Culoarea scrollbar-ului la hover */
}
::-webkit-scrollbar-track {
    background: #f0f0f0; /* Culoarea fundalului scrollbar-ului */
    border-radius: 10px;
}
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 900px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 90%;
    font-size: 14px;
}
.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    font-weight: bold;
}
.close-popup:hover {
    color: #FF5722;
}