.step-container {
    width: 100%; max-width: 500px; margin: 0px auto;
    background: #fff; border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: #000000;
}
#calendar_booking .header {
    background: #800020; 
    color: white; 
    font-weight: bold;
    padding: 20px; 
    text-align: center; 
    border-radius: 8px 8px 0 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
#monthYear {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
}

#monthYear::after {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #000;
}

.days-of-week, .days {
    display: grid; grid-template-columns: repeat(7, 1fr);
    text-align: center; margin: 8px 0;
    color: #000000;
    gap: 8px;
}
.days-of-week .week {
    font-size: 16px;
    font-weight: 500;
}

.day { 
    width: 45px; 
    height: 45px; 
    line-height: 45px;
    margin: auto; 
    border-radius: 50%; 
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}
.day.active { background: #800020; color: white; }
.day.disabled { background: #ddd; color: #999; cursor: not-allowed; }
.day-toggle.btn-danger { background: #800020; border-color: #800020; color:white }
button#toStep2 {
    background: #800020;
    color: #ffffff;
}

button#resetDates {
    background: #dddddd;
    color: #000;
}
.body-cal {
    padding: 30px 30px;
}
.btn-style-default{
    background: #dddddd;
}
.btn-style-main{
    background: #800020;
    color: #ffffff;
}
.body-cal label {
    font-size: 16px;
}
.box-total-hour {
    font-size: 16px;
}
button.btn-day-of-week {
    width: 50px;
    height: 50px;
    line-height: 40px;
    margin: auto;
    border-radius: 50%;
    cursor: pointer;
    border: 0px;
}

.body-cal .btn-action {
    height: 47px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media screen and (max-width: 767px) {
    .body-cal {
        padding: 15px;
    }

    .body-cal .days .day {
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
    }
}