@charset "UTF-8";
/* ================================
   SEE NZ EVENTS CALENDAR
   ================================ */

.see-nz-calendar {
    max-width: 100%;
    margin: 2rem 0;
    font-family: inherit;
}

/* ----------------
   Header / Nav
---------------- */

.see-nz-calendar .calendar-header {
    margin-bottom: 1.5rem;
}

.see-nz-calendar .calendar-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Month title */
.see-nz-calendar .calendar-nav h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

/* Circular arrows */
.see-nz-calendar .calendar-nav a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;

    background: #f3f3f3;
    color: #000;
    border: 1px solid #e2e2e2;

    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.see-nz-calendar .calendar-nav a:first-child {
    left: 0;
}

.see-nz-calendar .calendar-nav a:last-child {
    right: 0;
}

.see-nz-calendar .calendar-nav a:hover {
    background: #eaeaea;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* ----------------
   Calendar Grid
---------------- */

.see-nz-calendar .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    align-items: stretch;
}

/* Weekday labels */
.see-nz-calendar .weekday {
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 0;
    background: #f3f3f3;
    border-radius: 4px;
}

/* ----------------
   Day Cells (SQUARE)
---------------- */

.see-nz-calendar .day {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    padding: 6px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    box-sizing: border-box;
}

.see-nz-calendar .day.empty {
    background: #fafafa;
    border: none;
}

/* Day number */
.see-nz-calendar .day-number {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}

/* ----------------
   Events
---------------- */

.see-nz-calendar .event {
    margin-top: 4px;
}

.see-nz-calendar .event a {
    display: block;
    font-size: 0.8rem;
    line-height: 1.2;
    text-decoration: none;
    color: #0a4cff;
}

.see-nz-calendar .event a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
  .day {
    aspect-ratio: auto;
    min-height: 64px!important;
  }
}

