#content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;

    padding: 0 6px;
}
.year{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px;
    margin-bottom: 2rem;
}
.months-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.month {
    display: block;
    margin-bottom: 2rem;
    text-align: center;
}

.week {
    display: grid;
    grid-template-columns: repeat(7, 74px);
    gap: 4px;
    margin-bottom: 4px;
}

.day {
    transition: 
        transform .15s ease,
        box-shadow .15s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    width: 64px;
    height: 64px;
    padding: 4px;
    
    background-color: whitesmoke;
    border-radius: 10px;
    border: 1px solid black;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);

    cursor: pointer;
    position: relative;
}
.day:hover{
  transform:translateY(-2px);

  box-shadow:
    0 6px 16px rgba(0,0,0,.12);
}


.year h2{
    text-align: center;
}
.month h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2f2f2f;
}

.day-number {
    font-size: 11px;
    opacity: .8;
    line-height: 1;
    text-align: left;
}

.day-wind {
    font-size: 15px;
    text-align: center;
    font-weight: 600;
}

.empty-day {
    background-color: #e7e7e7;
    opacity: 0.6;
}

.today-live {
  position: relative;
  overflow: visible;
}
.live-dot {
  position: absolute;
  top: 5px;
  right: 5px;

  width: 10px;
  height: 10px;

  background: #ff3b30;
  border-radius: 50%;

  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.6);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 12px rgba(255, 59, 48, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
  }
}

@media(max-width: 700px) {
    .year {
        margin: 10px;
    }
    .month h3 {
        font-size: 18px;
    }
    .week{
        grid-template-columns: repeat(7, 49px);
        gap: 4px;
        margin-bottom: 4px;
    }

    .day{
        width: 45px;
        height: 45px;

        padding: 2px;
    }
    .day-number{
        font-size: 9px;
    }
    .day-wind{
        font-size: 11px;
    }
}