  .main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 1em;
  }
  .header {
    margin-bottom: 6em;
  }
  .calendar-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    gap: 1em;
  }

  .calendar-header button {
    padding: 5px 10px;
    cursor: pointer;
  }

  .calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 90%;
    max-width: 1000px;
    gap: 1px;
    background: #000;
  }

  .calendar-day, .calendar-cell {
    background: white;
    padding: 10px;
    min-height: 80px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .calendar-day {
    background-color: #ddd;
    font-weight: bold;
    text-align: center;
  }

  .calendar-cell:hover {
    background-color: #f0f0f0;
    cursor: pointer;
  }

  .event {
    font-size: 12px;
    margin-top: 5px;
  }