    .content{
    padding: 0%;
    display: flex;
    flex: 1;
    justify-content: center; 
    align-items: center;    
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  
  .calendar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .month {
    text-align: center;
    background: #D34F4F;
    color: #fff;
    padding: 1rem 0;
    font-size: 200%;
  }
  
  .days, .dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  
  .days .day {
    text-align: center;
    font-weight: bold;
    color: #555;
    padding: 0.5rem 0;
    background: #fff;
  }
  
  .dates .date {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    color: #333;
  }
  
  .dates .date.empty {
    background: #f9f9f9;
    border: none;
  }
  
  .dates .date:hover {
    background: #D34F4F;
    color: #fff;
    cursor: pointer;
  }
  
  h2 {
    text-align: center;
    color: #D34F4F;
    font-size: 300%;
  }
  