body {
      margin: 0;
      font-family: "Sansation", sans-serif;
      background-color: #f2f2f2;
      color: #333;
    }
    
.menetrend-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

canvas#menetrendCanvas {
  width: 600px;
  height: 400px;
  border: 1px solid #ccc;
  background: white;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

#timetableDisplay {
  width: 400px;
  min-height: 400px;
  border: 1px solid #ccc;
  background: white;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
  overflow-y: auto;
}

#timetableDisplay img {
  max-width: 100%;
  display: block;
  margin: 10px auto;
  border-radius: 4px;
  border: 1px solid #999;
  box-shadow: 0 0 8px rgba(0, 85, 204, 0.4);
}
      
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.grid-card {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.grid-card h3 {
  margin-top: 0;
  color: #1d3557;
}

/* width */
::-webkit-scrollbar {
  width: 11px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #754c24; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #005a9c; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0285e6; 
}

.grid-card p {
  line-height: 1.6;
}

    header {
      background: linear-gradient(to right, #3a3a3a, #005a9c);
      color: white;
      padding: 1rem 2rem;
    }

    header h1 {
      margin: 0;
      font-size: 2rem;
    }

    nav {
  background: linear-gradient(90deg, #3a2e0f, #754c24); /* subtle gradient for depth */
  padding: 1rem 2.5rem; /* more padding for better spacing */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* subtle shadow for that “floating” effect */
  border-bottom: 3px solid #d4af37; /* a golden accent line, classic and sleek */
  font-family: Sansation, sans-serif; /* clean modern font */
}

nav a {
  color: #f0e6d2; /* warm off-white, easier on eyes than pure white */
  margin-right: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid transparent; /* underline effect on hover */
}

nav a:hover {
  color: #d4af37; /* golden hover effect for that premium vibe */
  border-bottom: 3px solid #d4af37;
  cursor: pointer;
}

    .hero {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 4px black;
    background-size: cover;
    background-position: center;
  }

    .hero h2 {
      font-size: 2.5rem;
    }

    .content {
      padding: 2rem;
    }

    .card {
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .card img {
      border-radius: 6px;
      margin-top: 1rem;
    }

    .discord-link {
      display: inline-block;
      background-color: #5865F2;
      color: white;
      padding: 0.6rem 1.2rem;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
    }

    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 1.2rem 1rem;
      font-size: 0.9rem;
    }

    footer p {
      margin: 4px 0;
    }
    
    
    
    
    
    
    
    
    
    .theme-toggle-btn {
    position: fixed;
    top: 15px;
    right: 15px;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-family: "Sansation", sans-serif;
    z-index: 1000;
  }