#emojiFilterDropdown,
#dayOfWeekDropdown {
  position: relative;
  display: inline-block;
}

#emojiFilterDropdown .dropbtn,
#dayOfWeekDropdown .dropbtn {
  background-color: transparent;
  color: black;
  font-weight: bold;
  padding: 0;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

#emojiFilterDropdown .dropdown-content,
#dayOfWeekDropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#emojiFilterDropdown .dropdown-content label,
#dayOfWeekDropdown .dropdown-content label {
  color: black;
  padding: 12px 16px;
  font-weight: bold;
  text-decoration: none;
  display: block;
}

#emojiFilterDropdown .dropdown-content label:hover,
#dayOfWeekDropdown .dropdown-content label:hover {
  background-color: #f1f1f1;
}

#emojiFilterDropdown:hover .dropdown-content,
#dayOfWeekDropdown:hover .dropdown-content {
  display: block;
}
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center; /* Center elements horizontally */
  background-color: #fff; /* Dark background for the page */
  color: #fff; /* Light text color */
  font-family: "Arial", sans-serif; /* Change the font */
}

img.logo {
  margin-top: 20px; /* Adjust as needed for spacing */
  width: 30vw; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
}
/* Dropdown Button */
#langDropdown .dropbtn {
  background-color: transparent;
  color: black;
  padding: 0;
  font-size: 16px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

/* Dropdown container */
#langDropdown .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content (hidden by default) */
#langCheckboxes .dropdown-content {
  display: none;
  position: absolute;
  background-color: #555;
  min-width: 160px;
  box-shadow: none;
  z-index: 1;
  text-align: left; /* Align text to the left */
  border-radius: 8px; /* Rounded corners */
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 0;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: transparent;
  color: white; /* Optional: Change text color on hover */
}

/* Show the dropdown menu when the button is clicked */
.show {
  display: block;
}

table {
  width: 90vw; /* Make the table width relative to the viewport */
  max-width: 100%; /* Ensure it doesn't exceed the viewport width */
  border-collapse: collapse;
  margin-top: 20px; /* Space between the image and the table */
  color: #fff; /* Light text color for contrast */
  background-color: #444; /* Dark background for the table */
  text-align: center; /* Center align table values */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Nicer font for the table */
  table-layout: auto; /* Allow the table to adjust column widths based on content */
}

@media (max-width: 1000px) {
  table {
    width: 100vw;
    font-size: 2em; /* Increase font size */
  }
}

th,
td {
  border: 1px solid #666; /* Darker border color */
  padding: 8px;
}
th {
  background-color: #555; /* Even darker background for headers */
  position: sticky;
  top: 0;
}
tr:nth-child(odd) {
  background-color: #444; /* Dark row background */
}
tr:nth-child(even) {
  background-color: #333; /* Darker row background */
}
tr:hover {
  background-color: #555; /* Highlight color on hover */
}

#sidebar {
  position: fixed;
  top: 0;
  right: -454px; /* Start off-screen */
  width: 450px;
  height: 100%;
  background: #333;
  z-index: 1000;
  border-left: 4px solid #555;
  /* background-color: #333 */
  transition: right 0.3s;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

.circular-button {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 50px; /* Makes the button circular */
  background-color: transparent; /* Sets the background color to white */
  color: white; /* Sets the text color to black for better contrast */
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition:
    background-color 0.3s,
    color 0.3s;
  margin-top: 20px; /* Adds space above the button */
}

.circular-button:hover {
  background-color: white; /* Changes background color on hover */
  color: black; /* Changes text color on hover */
}

.sbb-logo {
  width: 100px; /* Adjust the size as needed */
  height: auto;
  vertical-align: middle; /* Aligns the logo vertically with the button */
}

#sidebar h3,
#sidebar p {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 5px;
  color: #fff;
}
#sidebar li {
  list-style-type: none; /* Removes bullet points */
  margin-bottom: 1px; /* Reduce bottom margin to decrease spacing */
  padding-left: 40px;
  padding-right: 20px;
}
.new-section a {
  color: white; /* Set the color of <a> elements to white */
  text-decoration: none;
}

.new-section a:hover {
  text-decoration: underline;
}

#help-toggle:checked + #sidebar {
  right: 0;
}
/* Style to move the sidebar into view */
#help-toggle:checked + #sidebar {
  right: 0;
}
.xl {
  font-size: 34px; /* Adjust the size as needed */
}
.toggler {
  font-weight: bold; /* Makes text bold */
  background-color: 555; /* Highlights the text with a yellow background */
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
  padding: 1px 2px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}
.toggler:hover {
  transform: scale(
    1.05
  ); /* Slightly increases size on hover for emphasis */
  background-color: #666; /* Changes background color on hover for visual feedback */
}
.close-btn {
  position: absolute;
  top: 10px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  cursor: pointer;
  font-size: 24px; /* Adjust as needed */
  color: #fff; /* Adjust color as needed */
  padding-right: 5px;
}

.menu-bar {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* Transparent background */
  color: #000; /* Text color */
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  padding: 10px 0; /* Padding for the menu bar */
  font-size: 18px; /* Font size for the menu bar */
  position: relative; /* Not sticky */
  z-index: 1; /* Ensure it's above other elements */
}
.menu-bar a {
  color: #000; /* Black text color */
  font-weight: bold; /* Bold text */
  text-decoration: none; /* Remove underline */
  margin: 0 15px; /* Add some spacing between links */
}
.dropdown-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 600px; /* Adjust as needed */
  margin: 0 auto; /* Center the container */
}

.dropdown-container select {
  flex: 1;
  margin: 0 10px; /* Adjust spacing between dropdowns */
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  text-align: left;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}