/* Cerclebooking — Front */

.cb-calendar-wrap {
    font-family: inherit;
    max-width: 360px;
}

.cb-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.cb-month-name {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    text-transform: capitalize;
}
.cb-nav-btn {
    background: none;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 18px;
    color: inherit;
    line-height: 1;
    transition: background .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cb-nav-btn:hover:not(:disabled) { background: #f1f5f9; }
.cb-nav-btn:disabled { opacity: .3; cursor: default; }

.cb-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.cb-day-name {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #94a3b8;
    padding: 0 0 8px;
}
.cb-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
}
.cb-day--empty    { }
.cb-day--past     { color: #cbd5e1; }
.cb-day--free     { background: #f0fdf4; color: #15803d; font-weight: 500; }
.cb-day--reserved { background: #fef2f2; color: #b91c1c; }
.cb-day--today    { box-shadow: inset 0 0 0 2px currentColor; font-weight: 700; }

.cb-legend {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    font-size: 12px;
    color: #64748b;
}
.cb-legend-item  { display: flex; align-items: center; gap: 6px; }
.cb-dot          { width: 10px; height: 10px; border-radius: 3px; }
.cb-dot--free     { background: #bbf7d0; }
.cb-dot--reserved { background: #fecaca; }
