.cbm-calendar-container{
    width:100%;
    background:#fff;
    border:1px solid #e5e5e5;
    padding:25px;
    box-sizing:border-box;
}

.cbm-calendar-header{
    background:#1d1d1d;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 18px;
    margin-bottom:25px;
}

.cbm-calendar-header button{
    background:none;
    border:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.cbm-today-btn{
    font-size:24px;
    font-weight:600;
}

.cbm-months-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.cbm-month-title{
    font-size:34px;
    font-weight:600;
    margin-bottom:15px;
}

.cbm-weekdays{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    margin-bottom:10px;
}

.cbm-weekdays div{
    text-align:center;
    font-weight:600;
}

.cbm-days{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:6px;
}

.cbm-day{
    min-height:75px;
    border:1px solid #eee;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    padding-top:8px;
    cursor:pointer;
    transition:.2s;
}

.cbm-day:hover{
    background:#f8f8f8;
}

.cbm-date{
    font-weight:600;
}

.cbm-price{
    margin-top:8px;
    font-size:12px;
    color:#777;
}

.cbm-calendar-footer{
    margin-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

#cbm-clear-selection{
    background:none;
    border:none;
    cursor:pointer;
    font-weight:600;
}

@media(max-width:900px){

.cbm-months-wrapper{
grid-template-columns:1fr;
}

}

.cbm-day.cbm-available{
    background:#D4EDDA;
    color:#155724;
}

.cbm-day.cbm-pending{
    background:#FFF3CD;
    color:#856404;
}

.cbm-day.cbm-confirmed{
    background:#F8D7DA;
    color:#721C24;
}

.cbm-day.cbm-available .cbm-price{
    color:#155724;
}

.cbm-day.cbm-pending .cbm-price{
    color:#856404;
}

.cbm-day.cbm-confirmed .cbm-price{
    color:#721C24;
}

.cbm-day.cbm-disabled{
    background:#F5F5F5;
    color:#999;
    cursor:not-allowed;
    opacity:.6;
}

.cbm-day.cbm-disabled .cbm-price{
    color:#999;
}
.cbm-day.cbm-selected{
    background:#2F80ED !important;
    color:#fff;
}

.cbm-day.cbm-selected .cbm-price{
    color:#fff;
}

.cbm-day.cbm-in-range{
    background:#DCEBFF;
}

.cbm-day.cbm-in-range .cbm-price{
    color:#2F80ED;
}

/* Booking Panel */

.cbm-booking-wrapper{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:25px;
    box-shadow:0 6px 20px rgba(0,0,0,.05);
}

.cbm-booking-wrapper h2{
    margin:0 0 20px;
    font-size:30px;
    font-weight:700;
}

.cbm-booking-form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.cbm-booking-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #ececec;
}

.cbm-booking-row span{
    color:#666;
    font-size:15px;
}

.cbm-booking-row strong{
    font-size:16px;
    font-weight:600;
    color:#222;
}

.cbm-booking-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:10px;
    padding-top:20px;
    border-top:2px solid #ddd;
}

.cbm-booking-total span{
    font-size:18px;
    font-weight:600;
}

.cbm-booking-total strong{
    font-size:28px;
    font-weight:700;
    color:#1f7a1f;
}

.cbm-book-btn{
    margin-top:20px;
    width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    background:#222;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}

.cbm-book-btn:hover{
    background:#000;
}

#cbm-booking-message{
    margin:20px 0;
    padding:12px;
    border-radius:4px;
    display:none;
}

#cbm-booking-message.cbm-success{
    display:block;
    background:#d4edda;
    color:#155724;
}

#cbm-booking-message.cbm-error{
    display:block;
    background:#f8d7da;
    color:#721c24;
}