/* Events Page */

/* Events Section */
.events-section {
    text-align: center;
    padding: 40px 20px;
  }
  
  .events-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* Calendar Container */
  .calendar-container {
    width: 75%; /* Contain the calendar in the middle 75% of the screen */
    margin: 0 auto; /* Center horizontally */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for visual appeal */
    border-radius: 10px; /* Optional rounded corners */
    overflow: hidden; /* Prevents iframe from spilling over the rounded corners */
  }
  
  .calendar-container iframe {
    width: 100%; /* Ensure iframe adjusts to the container width */
    height: 600px; /* Fixed height */
    border: none; /* Remove default border */
  }
  
  /* Calendar Instructions Section */
.calendar-instructions {
    margin: 40px auto;
    padding: 20px;
    width: 75%; /* Keep it aligned with the calendar width */
    text-align: left;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .calendar-instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .calendar-instructions p {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .calendar-instructions ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .calendar-instructions ul li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  