body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #f8f9fa;
  }
  
  .legend {
    display: flex;
    flex-wrap: wrap;
  }
  
  .legend-item {
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
  }
  
  .green { background-color: #4CAF50; }
  .yellow { background-color: #eff70b; color: black; }
  .orange { background-color: #FF9800; }
  .blue { background-color: #2196F3; }
  .purple {background-color: rgb(236, 123, 236); }
  
  .calendar-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .month {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .month-header {
    background-color: #b5b9bd;
    color: white;
    padding: 8px;
    text-align: center;
    font-weight: bold;
  }
  
  .days-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #e9ecef;
    font-weight: bold;
    text-align: center;
    padding: 4px 0;
  }
  
  .days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
  }
  
  .day-cell {
    border: 1px solid #dee2e6;
    padding: 5px;
    min-height: 40px;
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  
  @media (max-width: 768px) {
    .day-cell {
      font-size: 0.65rem;
      min-height: 30px;
      padding: 3px;
    }
  }
  