    * {
      margin: 0px;
      padding 0px;
    }

    #map {
      height: 80vh;
      width: 100%;
    }

    #back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1001;
      background-color: #007BFF;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    #back-to-top:hover {
      background-color: #0056b3;
      transform: scale(1.1);
    }

    #back-to-top.visible {
      opacity: 1;
    }


    #control_panel {
      position: absolute;
      width: 85vw;
      top: 62vh;
      left: 50%;
      font-size: 14px;
      transform: translateX(-50%);
      z-index: 1000;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 8px;
      padding: 10px 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    #city-selection {
      position: absolute;
      top: 2vh;
      right: 2vh;
      font-size: 14px;
      display: flex;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.8);
      border-radius: 8px;
      padding: 10px 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      align-items: center;
    }

    #controls {
      width: 100%;
      margin: 5px;
      display: flex;
      align-items: center;
    }

    th[data-order="asc"]::after {
      content: " ▼";
      margin-left: 5px;
    }

    th[data-order="desc"]::after {
      content: " ▲";
      margin-left: 5px;
    }

    th[data-order=""]::after {
      content: "";
    }

    #route-table-container {
      margin: 20px;
      width: 90%;
      overflow-x: auto;
    }

    #route-table {
      border-collapse: collapse;
      width: 100%;
      font-family: Arial, sans-serif;
      font-size: 14px;
    }

    #route-table th,
    #route-table td {
      border: 1px solid #ddd;
      text-align: left;
      padding: 8px;
    }

    #route-table th {
      background-color: #f2f2f2;
    }

    #route-table tr:hover {
      background-color: #f5f5f5;
    }

    #route-table tr.active {
      background-color: #e6f7ff;
      font-weight: bold;
    }

    #time {
      display: flex;
    }

    #time-slider {
      width: 100%;
    }

    #info-box {
      background: rgba(255, 255, 255, 0.5);
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      font-family: Arial, sans-serif;
      font-size: 14px;
      line-height: 1.5;
      width: 100%;
    }

    #info-date {
      width: 100%;
      display: flex;
      justify-content: space-between;
    }

    #info-stats {
      width: 100%;
      display: flex;
      justify-content: space-between;
    }

    #play-button {
      padding: 5px;
      font-size: 16px;
    }


    /* Stations: How many bikes does a station contain */
    .bike-count-label {
      text-align: center;
      font-size: 10px;
      font-weight: bold;
      color: #fff5bc;
      pointer-events: none;
    }

    .bike-count-text {
      position: relative;
      top: -2px;
    }

    #faq-section {
      margin: 20px auto;
      padding: 20px;
      max-width: 800px;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    #faq-section h2 {
      text-align: center;
      margin-bottom: 22px;
    }

    .faq-item {
      margin-bottom: 20px;
    }

    .faq-item h3 {
      margin-bottom: 10px;
      font-size: 22px;
      color: #252525;
    }

    .faq-item p {
      margin: 0;
    }

    .faq-item ul {
      margin: 10px 0 0 20px;
      padding: 0;
      list-style-type: disc;
    }

    .faq-item ul li {
      margin-bottom: 5px;
    }