/*
 * THE CALENDAR'S OWN BOX — the toolbar and whichever view is current, or
 * whatever chrome the app mounts instead.
 *
 * It fills what it is given in BOTH directions, because the grid inside decides
 * how many lanes a week row can hold from the height it ends up with.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-calendar-view {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    min-width: 0;
    min-height: 0;
    background-color: var(--card);
  }

  .lotics-calendar-view__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1;
    min-width: 0;
    min-height: 0;
  }
}
