.calendar-item {
    width: 200px;
    display: inline-block;
    vertical-align: top;
    margin: 0 16px 20px;
    font: 14px/1.2 Arial, sans-serif;
}
.calendar-head {
    text-align: center;
    padding: 5px;
    font-weight: 700 !important;
    font-size: 14px;
}
.calendar-item table {
    border-collapse: collapse;
    width: 100%;
}
.calendar-item th {
    font-size: 12px;
    padding: 6px 7px;
    text-align: center;
    color: #888;
    font-weight: normal;
}
.calendar-item td {
    font-size: 13px;
    padding: 6px 5px;
    text-align: center;
    border: 1px solid #ddd;
}
.calendar-item tr th:nth-child(6), .calendar-item tr th:nth-child(7),
.calendar-item tr td:nth-child(6), .calendar-item tr td:nth-child(7)  {
    color: #e65a5a;
}
.calendar-day.last {
    color: #999 !important;
}
.calendar-day.today {
    font-weight: bold;
}
.calendar-day.event {
    background: #ffe2ad;
    position: relative;
    cursor: pointer;
}
.calendar-day.event:hover .calendar-popup {
    display: block;
}
.calendar-popup {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    min-width: 200px;
    padding: 15px;
    background: #fff;
    text-align: left;
    font-size: 13px;
    z-index: 100;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    color: #000;
}
.calendar-popup:before {
    content: "";
    border: solid transparent;
    position: absolute;
    left: 8px;
    bottom: 100%;
    border-bottom-color: #fff;
    border-width: 9px;
    margin-left: 0;
}

.calendar-day {
    cursor: pointer;
    transition: background-color 0.2s;
}
.calendar-day:hover:not(.last) {
    background-color: #f8f9fa !important;
}
.calendar-day.event {
    background-color: #d4edda !important;
}

.calendar-wrp {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.calendar-item {
    margin: 0 0 20px;
}

.selected-dates-list {
    margin-top: 10px;
    padding: 10px;
    border: 1px dashed #ccc;
    min-height: 50px;
}

.selected-dates-list ul {
    display: flex;
    gap: 10px;
}

.selected-dates-list ul li{
    list-style-type: none;
}

.appointment-form {

}

.appointment-form table {
    table-layout: fixed;
}

.appointment-form tr td:nth-child(1) {
    width: 30% !important;
}

.appointment-form tr td:nth-child(2) {
    width: 70% !important;
}

.appointment-form select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 5px;
    max-width: 100%;
}

.appointment-form .nice-select {
    width: 100%;
}
.appointment-form .nice-select .list {
    max-width: 650px;
    max-height: 300px;
    overflow: auto;
}

.appointment-form .nice-select .option {
    white-space: break-spaces;
    min-height: 10px;
    line-height: 1.2;
    padding: 10px 10px;
}

.appointment-form .nice-select .current {
    width: 100%;
    display: block;
    overflow: hidden;
    max-width: 650px;
}

.appointment-docs-list {
    font-size: 13px;
}

.appointment-docs-list p {
    margin-bottom: 10px;
}

.service__text {
    max-width: 900px;
}

.service__text p {
    margin-bottom: 15px;
}

.print-button {
    display: flex;
    justify-content: flex-end;
}

.print-button button {
    font-family: inherit;
    background: #085999;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
}