.appointment-container-wrap {
    display: flex;
    justify-content: center;
}

.appointment {
    /*border: 2px solid #6f42c1;*/
    /*background-color: #c29a62;*/
}

.appointment-header {
    text-align: center;
}

.appointment-status {
    text-align: center;
    color: #c29a62;
}

.gallery {
    display: flex;
    transition: transform 0.3s ease-in-out;
    border-radius: 20px;
}

.gallery:hover {
    transform: scale(1.5); /* Увеличение в 1.5 раза */
}

.gold_color {
    color: #c29a62;
}