.plot-section {
    display: flex;
    flex-direction: column;
    gap: 10px; /* space between filter and plot */
    margin-top: 10px;
}

.filter-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    background: url('/o/neo-theme/images/autumn-fireball.png') center/cover no-repeat;
    border-radius: 0px;
    font-family: Verdana, sans-serif;
    font-size: 12px;
    overflow-x: hidden;
}

.filter-container select {
    padding: 5px 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 12px;
    background-color: white;
    color: black;
    min-width: 160px; /* was 120px */
    max-width: 200px; /* was 150px */
    flex: 1 1 auto;
}

.wide-select {
    min-width: 200px !important;
    max-width: 250px !important;
}

.narrow-select {
    min-width: 100px !important;
    max-width: 120px !important;
}
.filter-container button {
    padding: 6px 15px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.filter-container button:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: normal;
}
.tablinks {
  background-color: white;
  border: none;
  color: #555;
  padding: 8px 16px;
  font-weight: normal;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}
.tablinks.active {
  border-bottom: 2px solid black;
  color: black;
}
.tabcontent {
  display: none;
}
.tabcontent.active, #upcomingTab {
  display: block;
}
.no-data-message {
    font-family: Arial, sans-serif;
    color: gray;
    font-size: 16px;
    text-align: center;
    padding: 10px;
}
