.sait-container {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}
.sait-year-selector {
  margin-bottom: 0px;
  padding: 8px 12px;
  background: #e0e0e0;
  display: flex; 
  justify-content: center; 
  align-items: center;
  box-shadow: 0 6px 5px -3px #b7b7b7;
  height: 28px;

  /* Make sticky header */
  position: sticky; /* Makes it stick when scrolling */
  top: 0; /* Sticks to the top */
  z-index: 100; /* Ensures it stays above other content when scrolling */
}
.sait-year-selector h2 { 
    margin: 0; 
    font-size: clamp(20px, 3vw, 21px);
}
.sait-year-selector .year-dropdown { 
    display: flex; 
    align-items: center;
    position: absolute; 
    right: 12px;
}
.sait-year-selector label {
  font-weight: bold;
  margin-right: 10px;
}
.sait-year-selector select {
  padding: 5px 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f9f9f9c2;
}
.sait-section {
  text-align: left;
}
.sait-section-title {
  background: #ebebec;
  padding: 8px 12px;
  font-weight: bold;
  line-height: 22px;
}
.sait-month-row {
  color: rgb(20, 20, 20);
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
  font-size: clamp(13px, 3vw, 16px);
  cursor: pointer;
  transition: background-color 0.2s;
}
.sait-month-row:hover {
  background-color: #f5f5f5;
}
.sait-month-name {
  font-weight: bold;
  display: inline;
  margin-right: 10px;
}
.sait-date {
  display: inline-block;
  background: #e0e0e0;
  padding: 2px 6px;
  margin: 0 3px;
  border-radius: 3px;
}

/* Popup Modal Styles */
.sait-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.sait-modal[style*="display: block"] {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.sait-modal-content {
  position: relative;
  background-color: #fefefe;
  padding: 0;
  border: 1px solid #888;
  width: 300px;
  height: 285px;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.sait-modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  color: #333;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 0;
  line-height: 1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sait-modal-close:hover,
.sait-modal-close:focus {
  background: rgba(255, 255, 255, 1);
  color: #000;
}

.sait-modal-body {
  width: 100%;
  height: 100%;
}

.sait-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

@media (max-width: 400px) {
    .sait-section-title {
      padding: 8px 8px;
    }
    .sait-month-row { 
      font-size: 13px; 
      padding: 8px 8px;
    }
    .sait-month-name {
      margin-right: 8px;
    }
    .sait-date { 
      padding: 2px 4px;
      margin: 2px;
    }
}