.calendar-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .react-calendar {
    width: 100%;
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .react-calendar__tile {
    text-align: center;
    padding: 10px;
  }
  
  .react-calendar__tile--active {
    background: #007bff;
    color: white;
    border-radius: 5px;
  }
  
  .selected-date {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
  }
  

  .selected-info {
    margin-top: 20px;
    text-align: left;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
  }
  
  .selected-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .selected-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .selected-info ul {
    list-style: none;
    padding: 0;
  }
  
  .selected-info li {
    font-size: 0.9rem;
    color: #333;
  }

  
  /* Add styles for calendar tiles with multiple events */
.multiple-events {
    background-color: #ffdddd; /* Light red background */
    border: 1px solid #ff0000; /* Red border */
    color: #ff0000; /* Red text */
  }
  
  .event-text {
    font-size: 0.75rem;
    color: #333; /* Regular text color for events */
  }
  .cl-selected-info-area{
    padding: 10px;
    border: 1px solid #eee;
    margin-top: 20px;
    border-radius: 10px;
  }
 