html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--tenant-color-body-bg);
  color: var(--tenant-color-text-color);
  font-family: var(--tenant-font-family, sans-serif);
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 768px;
  margin: auto;
}

.app-header {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.app-header-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* ===== NAV BAR ===== */
.app-nav {
  background-color: var(--tenant-color-secondary);
  position: relative;
}

/* bovenste balk */
.app-nav-bar {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.5rem;
}

/* hamburger knop */
.app-nav-toggle {
  border: 0;
  background: transparent;
  padding: 0.5rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--tenant-color-tertiary);
  cursor: pointer;
}

/* ===== MENU ===== */
.app-nav-menu {
  position: absolute;
  top: 56px;
  right: 0;
  left: 0;
  background-color: var(--tenant-color-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

/* links */
.app-nav-link {
  display: block;
  padding: 1rem;
  text-decoration: none;
  font-weight: 600;
  color: var(--tenant-color-tertiary);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* hover */
.app-nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* active */
.app-nav-link.active {
  background-color: rgba(255, 255, 255, 0.3);
}

.app-nav-menu {
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.routetable {
  --row-bg: var(--tenant-color-tertiary);
  --row-hover: color-mix(in srgb, var(--tenant-color-tertiary) 85%, white);
  --header-bg: var(--tenant-color-primary);
}
.routetable .row {
  margin: 0;
  padding: 14px 16px;
  align-items: center;
  color: #fff;
}
.routetable .row:first-child {
  background: var(--header-bg);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.routetable .row:not(:first-child) {
  background: var(--row-bg);
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.routetable .row:not(:first-child):hover {
  background: var(--row-hover);
  transform: translateX(4px);
}
.routetable .row:not(:first-child):active {
  transform: scale(0.98);
}
.routetable .col-6,
.routetable .col-2 {
  padding: 0;
  display: flex;
  align-items: center;
  color: #fff;
}
.routetable .col-6 {
  font-weight: 500;
}
.routetable .col-2 {
  font-size: 0.9rem;
  opacity: 0.9;
}
.routetable .col-2.d-flex {
  justify-content: space-between;
}
.routetable .col-2.d-flex i {
  color: #fff;
  transition: transform 0.2s ease;
}
.routetable .row:hover i {
  transform: translateX(4px);
}
.routetable .row.active {
  background: color-mix(in srgb, var(--tenant-color-primary) 80%, black);
}
@media (max-width: 768px) {
  .routetable .row {
    padding: 12px;
  }
  .routetable .col-2 {
    font-size: 0.8rem;
  }
}

.map-container {
  position: relative;
}

#mapId {
  height: 600px;
}

/* subtiele overlay */
.map-legend {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-size: 12px;
}

/* compacte items */
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.legend-item img {
  width: 16px;
  height: 26px;
}

/*# sourceMappingURL=site.css.map */
