/* ══════════════════════════════════════════════════════════════
   GmCalendar — Public calendar styles
   ══════════════════════════════════════════════════════════════ */

.gm-cal-root { font-family: inherit; }

/* ── Navigation ─────────────────────────────────────────────── */
.gm-cal-months-wrap { display:flex; align-items:flex-start; gap:6px; }
.gm-cal-btn-nav {
    flex-shrink: 0;
    width: 32px; height: 32px;
    background: #f0f2f5;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #555;
    padding: 0;
    margin-top: 2px;
    transition: background .15s;
}
.gm-cal-btn-nav:hover { background: #e2e5eb; }

/* ── Month ───────────────────────────────────────────────────── */
.gm-cal-months { flex: 1; display: flex; flex-wrap: wrap; }
.gm-cal-month  { box-sizing: border-box; }

.gm-cal-month-title {
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 0 12px;
    color: #333;
}

/* ── Grid ────────────────────────────────────────────────────── */
.gm-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}
.gm-cal-head {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    padding: 4px 0 8px;
    text-transform: uppercase;
}
.gm-cal-cell {
    height: 32px; /* override par data-cellsize via JS */
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.gm-cal-daynum {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: inherit;
}
.gm-cal-prix {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 9px;
    font-weight: 400;
    color: rgba(255,255,255,.85);
    line-height: 1;
}

/* ── Legend ──────────────────────────────────────────────────── */
.gm-cal-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: #555;
}
.gm-cal-leg {
    display: flex;
    align-items: center;
    gap: 6px;
}
