#calendarWrapper {
    text-align: center;
  }

  .calendar-container {
    display: flex;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .sidebar {
    background-color: #002855;
    color: white;
    width: 200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .year-switch {
    background: none;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }

  #currentYear {
    font-size: 18px;
    margin: 10px 0;
  }

  .month-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    width: 100%;
  }

  .month-list li {
    padding: 10px;
    text-align: center;
    cursor: pointer;
  }

  .month-list .active {
    background-color: #ffa726;
    border-radius: 4px;
  }

  .calendar {
    flex: 1;
    padding: 20px;
  }

  .calendar-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
  }

  .calendar-grid div {
    padding: 10px;
    background-color: #eaf2f8;
    border-radius: 4px;
  }

  .calendar-grid .dot {
    display: block;
    margin: 5px auto;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
  }

  .details {
    background-color: white;
    width: 300px;
    padding: 20px;
    border-left: 1px solid #ccc;
  }

  .details h3 {
    margin: 0 0 20px;
  }

  .details .event {
    display: flex;
    align-items: center;
  }

  .details p {
    margin: 0;
  }

  .details img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    margin-right: 10px;
  }