/* Calendario mensual inline */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    max-width: 340px;
}

.cal-header-cell {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-muted, #9ca3af);
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cal-cell {
    text-align: center;
    font-size: 0.85rem;
    padding: 6px 4px;
    border-radius: 6px;
    color: var(--color-text, #374151);
    line-height: 1;
}

.cal-cell.empty {
    background: transparent;
}

.cal-cell.weekend {
    color: var(--color-text-muted, #9ca3af);
}

.cal-cell.today {
    background: var(--color-bg-subtle, #f3f4f6);
    font-weight: 600;
}

.cal-cell.selected {
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.cal-cell.selected.weekend {
    color: #fff;
}