
#cbc-calendar-wrapper{max-width:800px;margin:auto}
.cbc-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.cbc-weekdays,.cbc-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:8px;text-align:center}
.cbc-day.available{background:#2ecc71;color:#fff;padding:12px;border-radius:8px;cursor:pointer}
.cbc-day.blocked{background:#e74c3c;color:#fff;padding:12px;border-radius:8px;opacity:.6}

/* Modal hidden by default */
.cbc-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:9999;
    align-items:center;
    justify-content:center;
}
.cbc-modal[aria-hidden="false"]{
    display:flex;
}
.cbc-modal-card{
    background:#fff;
    width:100%;
    max-width:420px;
    padding:26px 28px;
    border-radius:16px;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
    position:relative;
}
.cbc-close{
    position:absolute;
    top:14px;
    right:16px;
    font-size:22px;
    cursor:pointer;
}
#cbc-form input,#cbc-form select,#cbc-form button{
    width:100%;
    padding:10px;
    margin-bottom:10px;
}
#cbc-slots{display:none}
.cbc-phone{display:flex;gap:8px}
