/* Общий контейнер */
.ns-month { border: 1px solid #e5e7eb; border-radius: 12px; }

/* Заголовок */
.ns-month__title { font-weight: 600; margin-bottom: 12px; }

/* Таблица (десктоп) */
.ns-month__wrap { overflow: auto; }
.ns-month__table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 680px; }
.ns-month__thead th {
    position: sticky; top: 0; z-index: 1;
    background: #f8fafc;
    font-weight: 600;
}
.ns-month__thead th,
.ns-month__tbody td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #ececec; }
.ns-month__tbody tr:nth-child(even) { background: #fafafa; }

/* Карточки (моб.) */
.ns-month__cards { display: none; }
.ns-card { padding: 12px; border: 1px solid #ececec; border-radius: 10px; background: #fff; }
.ns-card__date { font-weight: 600; margin-bottom: 6px; }
.ns-card__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
.ns-card__row { display: flex; justify-content: space-between; }
.ns-card__name { font-weight: 500; margin-right: 8px; }
.ns-card__time { font-variant-numeric: tabular-nums; }

/* Переключение на карточки для узких экранов */
@media (max-width: 768px) {
    .ns-month__wrap { overflow: visible; }
    .ns-month__table { display: none; }
    .ns-month__cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
}