body > div:nth-child(1) > div:nth-child(3) > h2 {
  display: none;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

.header-container {
  text-align: center;
  padding: 20px;
  background: #1a2f53;
}

.container {
  max-width: 1000px;
  margin: 20px auto;
  text-align: center;
  padding: 20px;
}

.dropdown-container {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

label[for=monthYearDropdown] {
  color: #000;
}

/* Updated to include date picker */
input[type=text],
input[type=date],
select {
  padding: 8px;
  box-sizing: border-box;
  background-color: #1e1e1e;
  border: 1px solid #333;
  color: #e0e0e0;
}

.preset-buttons {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.input-row {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

label {
  font-weight: bold;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #1a2f53;
  border: 1px solid #444;
  color: #fff;
  transition: background-color 0.3s;
  border-radius: 5px;
}

button:hover {
  background-color: #4054B2;
}

#results {
  display: none;
}

#calendarControls,
#legend {
  display: none;
}

.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  margin: 20px auto;
  display: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.progress-update {
  font-size: 16px;
  margin-top: 10px;
}

#progressUpdate {
  color: #000;
}

table {
  max-width: 1160px;
  margin: 20px auto;
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid #333;
}

th,
td {
  padding: 4px 8px;
  text-align: center;
}

th {
  background-color: #1e1e1e;
  color: #e0e0e0;
  font-weight: bold;
}

td {
  background-color: #181818;
}

table tr th:first-child,
table tr td:first-child {
  max-width: 160px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

table a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
}

.legend {
  margin-top: 20px;
  text-align: left;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  color: #000;
}

.legend p {
  margin: 4px 0;
}

.legend-box {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid #333;
}

.tooltip {
  position: absolute;
  background: #1e1e1e;
  border: 1px solid #444;
  padding: 5px;
  z-index: 1000;
  font-size: 12px;
  pointer-events: none;
}

.tooltip-table {
  border-collapse: collapse;
}

.tooltip-table th,
.tooltip-table td {
  border: 1px solid #555;
  padding: 2px 4px;
  color: #e0e0e0;
}

.link-tooltip {
  position: absolute;
  background-color: #1a2f53;
  color: #ffffff;
  border: 1px solid #444;
  padding: 5px;
  z-index: 1000;
  font-size: 15px;
  pointer-events: none;
}

.availability-table th:nth-child(n+2),
.availability-table td:nth-child(n+2) {
  padding: 0;
  width: 20px;
}

#selectedDatesBox {
  background-color: #e2e2e2 !important;
  padding: 21px !important;
  margin-top: 30px !important;
  color: black !important;
  border-radius: 11px !important;
}

#viewSelectedDates {
  margin-top: 30px;
}

.header > h2 {
  padding: 20px;
  text-align: center;
  background: black;
}