* {
  box-sizing: border-box;
}

/*
 * Generischer Sichtbarkeits-Utility: viele Stellen in app.js schalten die
 * Klasse "hidden" per classList auf beliebigen Elementen (Buttons, divs,
 * Absätze) um, nicht nur auf den unten spezifischer gestylten Overlay-/
 * Panel-Typen. Ohne diese generische Regel würden solche Elemente trotz
 * gesetzter "hidden"-Klasse sichtbar bleiben.
 */
.hidden {
  display: none;
}

:root {
  --color-bg: #f4f5f7;
  --color-sidebar-bg: #ffffff;
  --color-text: #222222;
  --color-text-muted: #666666;
  --color-hint: #888888;
  --color-border: #dddddd;
  --color-panel-border: #eeeeee;
  --color-accent: #1976d2;
  --color-accent-hover: #1565c0;
  --color-input-bg: #ffffff;
  --color-input-border: #cccccc;
  --color-input-disabled-bg: #f0f0f0;
  --color-input-disabled-text: #aaaaaa;
  --color-modal-overlay: rgba(0, 0, 0, 0.45);
  --color-shadow: rgba(0, 0, 0, 0.05);
  --color-scrollbar-track: #e9eaed;
  --color-scrollbar-thumb: #b6bac2;
  --color-scrollbar-thumb-hover: #9a9fa8;
}

body.theme-dark {
  --color-bg: #14171c;
  --color-sidebar-bg: #1c2027;
  --color-text: #e6e8eb;
  --color-text-muted: #a9adb4;
  --color-hint: #8a8f98;
  --color-border: #2c313a;
  --color-panel-border: #2a2f38;
  --color-accent: #4da3ff;
  --color-accent-hover: #6bb3ff;
  --color-input-bg: #22262e;
  --color-input-border: #3a3f48;
  --color-input-disabled-bg: #1a1d23;
  --color-input-disabled-text: #666a72;
  --color-modal-overlay: rgba(0, 0, 0, 0.65);
  --color-shadow: rgba(0, 0, 0, 0.4);
  --color-scrollbar-track: #1a1d23;
  --color-scrollbar-thumb: #454b56;
  --color-scrollbar-thumb-hover: #5a6170;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* -----------------------------------------------------------------------
   Scrollbar-Design (an das Farbschema/Theme angepasst statt Browser-Standard)
----------------------------------------------------------------------- */

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-scrollbar-thumb) var(--color-scrollbar-track);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: var(--color-scrollbar-track);
  border-radius: 6px;
}

*::-webkit-scrollbar-thumb {
  background: var(--color-scrollbar-thumb);
  border-radius: 6px;
  border: 2px solid var(--color-scrollbar-track);
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--color-scrollbar-thumb-hover);
}

.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

.app-main {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
}

.sidebar-wrapper {
  position: relative;
  z-index: 15;
  display: flex;
  flex: none;
}

.sidebar {
  width: 340px;
  min-width: 300px;
  background: var(--color-sidebar-bg);
  border-right: 1px solid var(--color-border);
  padding: 16px;
  overflow-y: auto;
  box-shadow: 2px 0 6px var(--color-shadow);
  transition: width 0.2s ease-in-out, min-width 0.2s ease-in-out, padding 0.2s ease-in-out;
}

.sidebar-wrapper.collapsed .sidebar {
  width: 0;
  min-width: 0;
  padding: 0;
  border-right: none;
  overflow: hidden;
}

.sidebar-toggle {
  position: absolute;
  top: 16px;
  right: -14px;
  z-index: 20;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--color-input-border);
  background: var(--color-sidebar-bg);
  color: var(--color-text);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px var(--color-shadow);
  flex: none;
}

.sidebar-toggle:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.annotation-editor-panel {
  width: 300px;
  min-width: 260px;
  flex: none;
  background: var(--color-sidebar-bg);
  border-left: 1px solid var(--color-border);
  padding: 16px;
  overflow-y: auto;
  box-shadow: 2px 0 6px var(--color-shadow);
}

.annotation-editor-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.annotation-editor-panel-header h2 {
  margin: 0;
  font-size: 1.05rem;
}

.annotation-editor-panel-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.sidebar-header h1 {
  margin: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.icon-btn {
  flex: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--color-input-border);
  background: var(--color-input-bg);
  color: var(--color-text);
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover:not(:disabled) {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  overflow: hidden;
  margin-right: 4px;
}

.lang-switch-btn {
  flex: none;
  padding: 6px 8px;
  border: none;
  background: var(--color-input-bg);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.lang-switch-btn:not(:last-child) {
  border-right: 1px solid var(--color-input-border);
}

.lang-switch-btn:hover:not(.active) {
  background: var(--color-accent);
  color: #fff;
  opacity: 0.8;
}

.lang-switch-btn.active {
  background: var(--color-accent);
  color: #fff;
}

.sidebar h1 {
  font-size: 20px;
  margin: 0 0 16px;
  color: var(--color-accent);
}

.panel {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-panel-border);
}

.panel:last-child {
  border-bottom: none;
}

.panel h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* -----------------------------------------------------------------------
   Sidebar-Hauptgruppen (Laden / Erstellen / Editieren)
----------------------------------------------------------------------- */

.sidebar-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.sidebar-tab {
  flex: 1 1 50%;
  padding: 8px 6px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: var(--color-input-bg);
  color: var(--color-text);
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  cursor: pointer;
}

.sidebar-tab:hover {
  border-color: var(--color-accent);
}

.sidebar-tab.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.tab-panel {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

.tab-panel[hidden] {
  display: none;
}

.sidebar-group {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}

.sidebar-group:last-of-type {
  border-bottom: none;
}

.sidebar-group.group-disabled {
  opacity: 0.55;
}

.sidebar-group.group-disabled .group-title {
  color: var(--color-text-muted, #888);
}

.sidebar-group.group-disabled select,
.sidebar-group.group-disabled button {
  cursor: not-allowed;
}

.sidebar-group .group-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin: 0 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-panel-border);
}

.icon-btn-inline {
  width: 22px;
  height: 22px;
  font-size: 12px;
  text-transform: none;
  letter-spacing: normal;
}

.file-label {
  display: block;
  position: relative;
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.15s ease-in-out;
}

.file-label:hover {
  background: var(--color-accent-hover);
}

.file-label input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.hint {
  font-size: 12px;
  color: var(--color-hint);
  margin: 8px 0 0;
  line-height: 1.4;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 10px 0 4px;
  color: var(--color-text-muted);
}

input[type="datetime-local"],
input[type="text"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  font-size: 13px;
  background: var(--color-input-bg);
  color: var(--color-text);
  font-family: inherit;
}

input[type="datetime-local"]:disabled,
input[type="text"]:disabled,
select:disabled {
  background: var(--color-input-disabled-bg);
  color: var(--color-input-disabled-text);
}

input[type="range"] {
  width: 100%;
  accent-color: var(--color-accent);
  margin: 4px 0;
}

textarea {
  resize: vertical;
  min-height: 60px;
}

input[type="color"] {
  width: 42px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  background: var(--color-input-bg);
  cursor: pointer;
}

.button-row {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}

button {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--color-accent);
  background: var(--color-input-bg);
  color: var(--color-accent);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.15s ease-in-out;
}

button:hover:not(:disabled) {
  background: var(--color-accent);
  color: #fff;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.stats p {
  margin: 4px 0;
  font-size: 13px;
}

.legend ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.dot-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.dot-icon.start {
  background: #2e7d32;
}

.dot-icon.end {
  background: #c62828;
}

.dot-icon.symbol {
  background: #666666;
}

.dot.point {
  background: #1976d2;
}

#map {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 0;
}

/* -----------------------------------------------------------------------
   Höhenprofil (Elevation-Panel)
----------------------------------------------------------------------- */

.elevation-panel {
  flex: none;
  height: 200px;
  width: 100%;
  background: var(--color-sidebar-bg);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 6px var(--color-shadow);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  transition: height 0.2s ease-in-out;
}

.elevation-panel.collapsed {
  height: 44px;
}

.elevation-panel.hidden {
  display: none;
}

.elevation-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex: none;
}

.elevation-header h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  margin: 0;
}

.elevation-header .hint {
  margin: 0;
}

.elevation-collapse-btn {
  margin-left: auto;
  align-self: center;
}

.elevation-chart-wrap {
  flex: 1;
  min-height: 0;
  position: relative;
}

.elevation-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  cursor: pointer;
}

/* Pulsierender Hervorhebungs-Kreis auf der Karte für den im Höhenprofil
   ausgewählten Punkt (und umgekehrt). */
.highlight-marker-pulse {
  animation: highlight-pulse 1.2s ease-in-out infinite;
}

@keyframes highlight-pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 1;
  }
}

/* -----------------------------------------------------------------------
   Einstellungen (Settings-Modal)
----------------------------------------------------------------------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-modal-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.hidden {
  display: none;
}

.modal {
  background: var(--color-sidebar-bg);
  color: var(--color-text);
  width: 420px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 64px);
  border-radius: 10px;
  box-shadow: 0 8px 30px var(--color-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-panel-border);
}

.modal-header h2 {
  margin: 0;
  font-size: 16px;
  color: var(--color-accent);
}

.modal-body {
  padding: 16px 18px;
  overflow-y: auto;
}

.modal-section {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-panel-border);
}

.modal-section:last-of-type {
  border-bottom: none;
}

.modal-section h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.color-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.color-grid label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  font-size: 13px;
  color: var(--color-text);
  font-weight: 600;
}

.color-grid input[type="color"] {
  width: 42px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  background: var(--color-input-bg);
  cursor: pointer;
}

/* -----------------------------------------------------------------------
   Format-Hinweise (CSV/GPX/GeoJSON-Beispiele)
----------------------------------------------------------------------- */

.format-example {
  background: var(--color-input-disabled-bg);
  border: 1px solid var(--color-panel-border);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text);
  overflow-x: auto;
  white-space: pre;
  margin: 8px 0;
}

/* -----------------------------------------------------------------------
   Zoomstufen-Indikator (Leaflet-Control unterhalb der Zoom-Buttons)
----------------------------------------------------------------------- */

.zoom-level-indicator {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 5px;
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  user-select: none;
}

.zoom-tick {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: #b0b4ba;
}

.zoom-tick-active {
  width: 20px;
  height: 3px;
  background: #1976d2;
}

.center-route-control {
  margin-top: 6px !important;
}

.center-route-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 15px;
  text-decoration: none;
  background: #ffffff;
  color: #333333;
}

.center-route-btn:hover {
  background: #f4f4f4;
}

/* -----------------------------------------------------------------------
   Eigene Route & Zeichnen: Werkzeug-Buttons, Listen, Karten-Icons
----------------------------------------------------------------------- */

#toggleRouteEditor.active-tool,
.tool-btn.active-tool {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.waypoint-list {
  margin-top: 12px;
  max-height: 160px;
  overflow-y: auto;
  border: 1px solid var(--color-panel-border);
  border-radius: 6px;
}

.waypoint-list .hint {
  margin: 0;
  padding: 10px;
}

.waypoint-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 12px;
  border-bottom: 1px solid var(--color-panel-border);
  cursor: pointer;
}

.waypoint-item.selected {
  background: var(--color-accent);
  color: #fff;
}

.waypoint-item.selected .waypoint-name {
  color: #fff;
}

.waypoint-item.hover-highlight {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
  background: rgba(25, 118, 210, 0.12);
}

.waypoint-item.selected.hover-highlight {
  outline: 2px solid #fff;
}

.waypoint-item:last-child {
  border-bottom: none;
}

.waypoint-emoji {
  flex: none;
  font-size: 14px;
}

.waypoint-name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text);
}

.waypoint-actions {
  flex: none;
  display: flex;
  gap: 2px;
}

.icon-btn-tiny {
  flex: none;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid var(--color-input-border);
  background: var(--color-input-bg);
  color: var(--color-text);
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  line-height: 1;
}

.icon-btn-tiny:hover:not(:disabled) {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.icon-btn-tiny:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Löschen-Button in den Punkt-Popups der Karte (nur im Bearbeitungsmodus
   sichtbar) - kompakt und in Warnfarbe, statt der generellen Vollbreiten-
   Button-Optik. */
.popup-delete-point {
  flex: none;
  display: block;
  margin-top: 6px;
  padding: 4px 8px;
  border: 1px solid #d32f2f;
  background: transparent;
  color: #d32f2f;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

.popup-delete-point:hover {
  background: #d32f2f;
  color: #fff;
}

/* Marker-Icons der eigenen Route (Wegpunkte) - überschreibt den weißen
   Standard-Rahmen von L.divIcon, damit nur das farbige Symbol sichtbar ist. */
.custom-waypoint-icon {
  background: transparent;
  border: none;
}

.custom-waypoint-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 15px;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Symbol-Anmerkungen (nicht Teil der Route) */
.annotation-symbol-icon {
  background: transparent;
  border: none;
}

.annotation-symbol-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 18px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

/* Text-Anmerkungen (nicht Teil der Route) */
.annotation-text-icon {
  background: transparent;
  border: none;
}

.annotation-text-label {
  display: inline-block;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #222222;
  border: 1px solid #8e24aa;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Lenkt per kurzer Puls-Animation (3x) die Aufmerksamkeit auf einen Button,
   z. B. "Bearbeitungsmodus starten" direkt nach dem Laden einer Datei. */
@keyframes blink-attention {

  0%,
  100% {
    box-shadow: none;
    background-color: var(--color-input-bg);
    color: var(--color-accent);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(25, 118, 210, 0.45);
    background-color: var(--color-accent);
    color: #fff;
  }
}

.blink-attention {
  animation: blink-attention 0.5s ease-in-out 3;
}

/* Benutzerdefinierter Symbol-Dropdown (ersetzt <select>, da native
   <option>-Elemente keine Icon-Fonts darstellen können). */
.icon-picker {
  position: relative;
}

.icon-picker-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-input-border);
  background: var(--color-input-bg);
  color: var(--color-text);
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.icon-picker-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.icon-picker-toggle span {
  flex: 1;
}

.icon-picker-caret {
  color: var(--color-text-muted);
  font-size: 11px;
}

.icon-picker-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  max-height: 220px;
  overflow-y: auto;
  background: var(--color-input-bg);
  border: 1px solid var(--color-input-border);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  padding: 4px;
}

.icon-picker-menu.hidden {
  display: none;
}

.icon-picker-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 6px 8px;
  border: none;
  background: transparent;
  color: var(--color-text);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.icon-picker-option:hover {
  background: var(--color-accent);
  color: #fff;
}

.annotation-handle-icon {
  background: transparent;
  border: none;
}

.annotation-handle-resize,
.annotation-handle-rotate {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.credits {
  height: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}