﻿/* Standardstil für das Bild */
.responsive-image {
    max-width: 100%;  /* Maximale Breite ist die Container-Breite */
    height: auto;
}
.premium {
	display: none;
}
.premium-tabelle {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 10px;
    overflow: hidden;
	padding: 10px 5px;
}
.premium-tabelle thead th {
    text-align: left;
    padding: 10px 5px;
}
.premium-tabelle td {
    text-align: left;
    padding: 10px 5px;
}
.premium-tabelle button {
    width: 100%;
    height: 100%;
}
.premium-erweiterungen {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 10px;
    overflow: hidden;
	padding: 10px 5px;
}
.menu-icon {
    width: 32px;      /* anpassen je nach gewünschter Größe */
    height: 32px;
    margin-right: 10px; /* Abstand zum Text */
    display: inline-block;
    vertical-align: middle;
}
.success-message {
    color: green;
    background-color: #e0ffe0;
    padding: 10px;
    margin: 10px auto;
    border: 1px solid #0c0;
    border-radius: 5px;
    width: fit-content;
}
@media (max-width: 768px) {  /* Gilt nur für Geräte mit einer Breite von max. 768px (Tablets & Handys) */
    .responsive-image {
        width: 100%;
    }
	.toolbar {
        width: 60px;
    }

    .toolbar.open {
        width: 160px;
    }

    .toolbar.open .text {
        opacity: 1;
    }
}
.einzel-bericht a {
    color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
	margin-top: 50px;
	text-align: center;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('Bilder/Desktop/login.jpg') no-repeat center center fixed;
    background-size: cover;
	color: white; /* Schriftfarbe weiß für guten Kontrast */
    font-family: Arial, sans-serif; /* Optionale Schriftart */
    text-align: center; /* Zentriert den gesamten Text */
	justify-content: center;
	 align-items: center;
}
.body-overview {
    background: url('Bilder/Desktop/overview.webp') no-repeat center center fixed;
	background-size: cover;
    }
.body-zentrale {
    background: url('Bilder/Desktop/zentrale.jpg') no-repeat center center fixed;
	background-size: cover;
    }
.body-flotte {
    background: url('Bilder/Desktop/flotte.png') no-repeat center center fixed;
	background-size: cover;
    }
.body-mail {
    background: url('Bilder/Desktop/mail.jpg') no-repeat center center fixed;
	background-size: cover;
    }
.body-planet {
    background: url('Bilder/Desktop/planet.jpg') no-repeat center center fixed;
	background-size: cover;
	}
.body-karte {
    background: url('Bilder/Desktop/karte.jpg') no-repeat center center fixed;
	background-size: cover;
	}
.body-report {
    background: url('Bilder/Desktop/report.jpg') no-repeat center center fixed;
	background-size: cover;
	}
.body-settings {
    background: url('Bilder/Desktop/settings.jpg') no-repeat center center fixed;
	background-size: cover;
	}
.body-premium {
    background: url('Bilder/Desktop/settings.jpg') no-repeat center center fixed;
	background-size: cover;
	}
.body-forschung {
    background: url('Bilder/Desktop/forschung.png') no-repeat center center fixed;
	background-size: cover;
	}
/* Toolbar mit zentrierten Elementen, aber Inhalt nach links ausgerichtet */
.toolbar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 60px;
    background: rgba(0, 0, 0, 0.5); /* Transparente Toolbar */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ausrichtung der Elemente nach links */
    justify-content: flex-start; /* Vertikale Ausrichtung am Anfang */
    padding-top: 20px;
	transition: width 0.3s;
    overflow-y: auto;
	scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;
}
.toolbar-spacer {
    height: 50px; /* Platz unten */
    flex-shrink: 0; /* wird nicht kleiner */
}
.toolbar:hover {
    width: 170px; /* Breite wird bei Hover größer */
    background: rgba(0, 0, 0, 0.7); /* Etwas dunkler bei Hover */
}

.tool-item {
    display: flex;
    align-items: center; /* Vertikal ausrichten (zentriert) */
    justify-content: flex-start; /* Text und Emoji nach links ausrichten */
    width: 100%;
    color: white;
    text-decoration: none;
    padding: 15px;
    font-size: 24px;
    transition: background 0.3s;
    line-height: 1.5; /* Gleiche Zeilenhöhe für Emoji und Text */
}

/* Text ist anfangs unsichtbar */
.tool-item .text {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Der Text wird sichtbar, wenn die Maus über die Toolbar geht */
.toolbar:hover .tool-item .text {
    opacity: 1;
    visibility: visible;
}
.topübar {
    display: flex;
    align-items: center;   /* vertikal zentrieren */
    justify-content: center; /* horizontal zentriert */
    gap: 30px;             /* Abstand zwischen den Elementen */
    margin: 20px 0;
}
.premium-link {  
    text-decoration: none;   /* Unterstreichung entfernen */
    font-size: 90px;         /* Pfeilgröße */
    color: yellow;           /* Pfeilfarbe */
    /*vertical-align: center;  /* Vertikal zentriert zur Textlinie */
    margin: 0 auto;   
}

.arrow-link {
    text-decoration: none;
}
.topbar-title {
    display: flex;
    align-items: center;      /* vertikal zentriert */
    justify-content: center;  /* horizontal zentriert */
    gap: 20px;                /* Abstand zwischen Pfeil – Titel – Pfeil */
    margin: 20px 0;
}
/* Der Emoji bleibt immer sichtbar */
.emoji {
    margin-right: 10px; /* Abstand zwischen Emoji und Text */
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.2); /* Heller Hover-Effekt */
}

/* Wenn man mit der Maus über den Toolbar fährt, erscheint der Text */
.toolbar:hover .tool-item {
    opacity: 1;
    visibility: visible;
}
.icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.text {
    opacity: 0;
	font-size: 14px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.toolbar:hover .text {
    opacity: 1;
}
.content {
    display: flex;
    flex-direction: column;
	margin-top: 25px;
    align-items: center; /* Zentriert horizontal */
    /*justify-content: center; /* Zentriert vertikal */
    text-align: center; /* Falls nötig */
    /*height: 100vh; /* Volle Bildschirmhöhe */
    width: 100%;
}

h1 {
    font-size: 2em; /* Größere Überschrift */
    margin-bottom: 20px;
	color: white; /* Falls andere Styles das überschreiben */
    text-align: center;
	background: rgba(0, 0, 0, 0.5);
}

p {
	background: rgba(0, 0, 0, 0.5);
    font-size: 1.2em; /* Etwas größere Schrift für bessere Lesbarkeit */
	color: white; /* Falls andere Styles das überschreiben */
    text-align: center;
	width: 80%;
	justify-content: center;
	margin: 0 auto;
}
a {
	color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
	text-align: center;
}
.forschung-tabelle {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
}

/* Tabellenüberschrift */
.forschung-tabelle th {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}

/* Tabelleninhalt */
.forschung-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}
.planeten-tabelle {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
	font-size: 1.2em;
}
/* CSS für die Links in der Planetenübersicht */
.planeten-tabelle a {
    color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
	margin-top: 50px;
	text-align: center;
}

/* Wenn der Link mit der Maus überfahren wird, ändern wir die Farbe */
.planeten-tabelle a:hover {
    color: #FF5733; /* Farbe beim Hover (z. B. Orange) */
    text-decoration: underline; /* Optional: Unterstreichung beim Hover */
}

/* Optional: Farbliche Gestaltung der Links im aktiven Zustand */
.planeten-tabelle a:active {
    color: #28a745; /* Farbe beim Klicken (z. B. Grün) */
}
.planeten-tabelle th, .planeten-tabelle td {
    margin-bottom: 10px;  /* Abstand zwischen den Zeilen */
	border: 1px solid #ddd;
	margin-right: 10px;
	padding-right: 20px;
	padding-left: 20px;	/* 20px Abstand rechts */
    text-align: center;
	background: rgba(0, 0, 0, 0.5);	/* Optional: Text linksbündig ausrichten */
	font-size: 1.2em;
}
.ressourcen {
    width: 80%;
    margin: 20px auto; /* auto für horizontale Zentrierung */
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
}

.ressourcen th, .ressourcen td {
    border: 1px solid #ddd;
    padding: 1px;
    text-align: center;
}

.ressourcen th {
    font-weight: bold;
}
.h1 {
    font-size: 4em; /* Größere Überschrift */
    margin-bottom: 20px;
	color: white; /* Falls andere Styles das überschreiben */
    text-align: center;
}
.zentrale-tabelle {
	 width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
	font-weight: bold;
	}
.zentrale-tabelle th, .zentrale-tabelle td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
	margin: 20px auto;
	white-space: nowrap;
}
.zentrale-tabelle a {
    color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
 margin-top: 50px;
}

/* Wenn der Link mit der Maus überfahren wird, ändern wir die Farbe */
.zentrale-tabelle a:hover {
    color: #FF5733; /* Farbe beim Hover (z. B. Orange) */
    text-decoration: underline; /* Optional: Unterstreichung beim Hover */
}

/* Optional: Farbliche Gestaltung der Links im aktiven Zustand */
.zentrale-tabelle a:active {
    color: #28a745; /* Farbe beim Klicken (z. B. Grün) */
}
.bau-tabelle {
	 width: 50%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 10px;
}
.bau-tabelle th, .bau-tabelle td {
    border: 1px solid #ddd;
    padding: 1px;
    text-align: center;
}
.bau-tabelle a {
    color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
	margin-top: 50px;
}

/* Wenn der Link mit der Maus überfahren wird, ändern wir die Farbe */
.bau-tabelle a:hover {
    color: #FF5733; /* Farbe beim Hover (z. B. Orange) */
    text-decoration: underline; /* Optional: Unterstreichung beim Hover */
}

/* Optional: Farbliche Gestaltung der Links im aktiven Zustand */
.bau-tabelle a:active {
    color: #28a745; /* Farbe beim Klicken (z. B. Grün) */
}
.bauzeit-timer {
    width: 120px; /* Breite fixieren, um Wackeln zu verhindern */
    text-align: center;
    display: inline-block;
    white-space: nowrap; /* Verhindert Umbruch */
}
.container {
    max-width: 400px;
    margin: 0 auto;
    background: #222;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    }
input, button {
    width: 50%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}

button {
    background-color: #ffc107;
    color: #000;
    cursor: pointer;
}
button.invalid {
    background-color: #a00; /* dunkles Rot für Hintergrund */
    color: #fff;
	pointer-events: none;  /* Klicks ignorieren */
	cursor: not-allowed;
}
button:hover {
    background-color: #e0a800;
}
button.invalid:hover {
    background-color: #000; /* dunkles Rot für Hintergrund */
    color: #fff;
}
.buttonstart {
	width: 20%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    background-color: #ffc107;
    color: #000;
    cursor: pointer;
}

.buttonstart:hover {
    background-color: #e0a800;
}
h2 {
    margin-top: 0;
	background: rgba(0, 0, 0, 0.5);
    }
.success {
    color: limegreen;
    margin-top: 10px;
	font-size: 1.5em;
}

.error {
    color: red;
    font-size: 4em;
    margin-top: 10px;
}

hr {
    border-color: #444;
}
/* Stile für die Labels */
label {
    font-size: 1.2em;
    color: white;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.form-login {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.input-login {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
}
.schiffbau-tabelle {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
	font-weight: bold;
}

/* Tabellenüberschrift */
.schiffbau-tabelle th {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    text-align: center;
}

/* Tabelleninhalt */
.schiffbau-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}
.ziel-tabelle {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
}

/* Tabellenüberschrift */
.ziel-tabelle th {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}

/* Tabelleninhalt */
.ziel-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.5);
}
/* Ränder (Balken) */
.border {
  position: relative;
  background-color: #a00; /* helles Grau */
  z-index: 10;
  cursor: pointer;
  display: flex; /* wichtig: Inhalt zentrieren */
  align-items: center;
  justify-content: center;
  font-size: 19px; /* Pfeil schön groß */
  color: white; /* Pfeil-Farbe */
  margin: 50px auto;
}

.grid-border {
  position: absolute;
  background-color: #888;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: white;
}

.grid-border.top,
.grid-border.bottom {
  height: 20px;
  width: 520px;
}

.grid-border.left,
.grid-border.right {
  width: 20px;
  height: 520px;
}

.grid-border.top    { top: 0; left: 20px;}
.grid-border.bottom { bottom: 0; left: 20px;}
.grid-border.left   { left: 0; top: 20px;}
.grid-border.right  { right: 0; top: 20px;}

/* Grid */
.karte-container {
  position: relative;
  padding: 20px;
  display: flex;
   margin: 20px auto;
  flex-direction: column;
  gap: 40px; /* Abstand zwischen den Ebenen */
}

.grid-container {
	position: relative;
	width: 560px;
	height: 560px;
	margin: 20px auto;
	border: 1px solid #888;
	margin-bottom: 50px;
	overflow: hidden; /* ← NEU: schneidet alles außerhalb ab */
}

.grid-label {
  font-weight: bold;
  margin: 20px auto;
  font-size: 2em;
}

.grid-wrapper {
	position: absolute;
	width: 15600px;
	height: 1560px;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(39, 40px);
	grid-template-rows: repeat(39, 40px);
}
.grid-cell {
	position: relative;
  width: 40px;
  height: 40px;
  background-color: #000;
  border: 1px solid #555;
  box-sizing: border-box;
 }
.grid-cell.a {
	cursor: pointer;
}	
#borderover-top,
#borderover-bottom {
  width: 560px;
  height: 20px;
  text-align: center;
  line-height: 30px;
}.planetkarte {
	background: url('Bilder/Desktop/planetkarte.png') no-repeat center center;
	background-size: cover;
	cursor: pointer;
}

.planetkarte.gelb {
	background-color: #e0a800;
}

.planetkarte.rot {
	background-color: #e00000;
}

.planetkarte.grau {
	background-color: #444;
}

.attack-karte {
	position: absolute;
	top: 1px;
	left: 1px;
	width: 10px;
	height: 10px;
	background: url('Bilder/Desktop/angriff.png') no-repeat center center;
	background-size: contain;
	pointer-events: none;
	z-index: 10;
}
.planetrecycling {
	position: absolute;
	top: 28px;
	left: 28px;
	width: 10px;
	height: 10px;
	background: url('Bilder/Desktop/orbit.png') no-repeat center center;
	background-size: contain;
	pointer-events: none;
	z-index: 10;
}
.angriff-tabelle {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 20px;
	}
.angriff-tabelle th {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}

/* Tabelleninhalt */
.angriff-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}
.ankunft-tabelle {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 20px;
}
.ankunft-tabelle th {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}

/* Tabelleninhalt */
.ankunft-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}
.report-neu a {
	font-size: 2em;
    color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
	margin-top: 50px;
}
.report-tabelle {
    width: 70%;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
}
.report-tabelle th {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}
/* Tabelleninhalt */
.report-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
	text-align: center;
}
.report-tabelle a {
    color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
	margin-top: 50px;
}
.einzel-bericht {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2); /* Transparenter Hintergrund */
    color: white;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
}
.einzel-text {
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5);; /* Transparenter Hintergrund */
}
.setting-tabelle {
	 width: 60%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 10px;
}
.setting-tabelle th {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: left;
	font-size: 2em;
	
}
/* Tabelleninhalt */
.setting-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
	text-align: left;
	font-size: 2em;
}
.flotten-tabelle {
    width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
	font-size: 1.2em;
}
/* CSS für die Links in der Planetenübersicht */
.flotten-tabelle a {
    color: #FFFF00; /* Hier kannst du die Farbe ändern, z. B. Blau */
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: bold; /* Macht den Text fett */
	margin-top: 50px;
	text-align: center;
}

/* Wenn der Link mit der Maus überfahren wird, ändern wir die Farbe */
.flotten-tabelle a:hover {
    color: #FF5733; /* Farbe beim Hover (z. B. Orange) */
    text-decoration: underline; /* Optional: Unterstreichung beim Hover */
}

/* Optional: Farbliche Gestaltung der Links im aktiven Zustand */
.flotten-tabelle a:active {
    color: #28a745; /* Farbe beim Klicken (z. B. Grün) */
}
.flotten-tabelle th, .flotten-tabelle td {
    margin-bottom: 10px;  /* Abstand zwischen den Zeilen */
	border: 1px solid #ddd;
	margin-right: 10px;
	padding-right: 20px;
	padding-left: 20px;	/* 20px Abstand rechts */
    text-align: center;
	background: rgba(0, 0, 0, 0.5);	/* Optional: Text linksbündig ausrichten */
}
.handel-vorhanden-tabelle {
    width: 60%;
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
	border: 1px solid #ddd;
}

/* Tabellenüberschrift */
.handel-vorhande-tabellen th {
	background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    font-weight: bold;
	font-size: 1.5em;
	border: 1px solid #ddd;
	margin: 20px auto;
}

/* Tabelleninhalt */
.handel-vorhanden-tabelle td {
    padding: 10px;
    border: 1px solid #ddd;
	background: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}
.handel-vorhanden-tabelle .aktivelabel {
    padding: 10px;
    border: 1px solid #ddd;
	background: rgba(127, 250, 127, 0.5);
	margin-bottom: 10px;
}
.handel-vorhanden-tabelle .aktivehandel {
    padding: 10px;
    border: 1px solid #ddd;
	background: #ffc107;
	margin-bottom: 10px;
}
.disabled-label {
	pointer-events: none;  /* Klicks ignorieren */
	opacity: 0.5;          /* Visuell "deaktiviert" */
	cursor: not-allowed;
}
.transport-tabelle {
	 width: 80%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 50px;
	font-weight: bold;
	}
.transport-tabelle th, .transport-tabelle td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
	margin: 20px auto;
	white-space: nowrap;
}
.rangliste-tabelle {
	 width: 60%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.5); /* Transparenter Hintergrund */
    color: white;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
	margin-top: 10px;
}
.rangliste-tabelle th {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: left;
	font-size: 1.8em;
	
}
/* Tabelleninhalt */
.rangliste-tabelle td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
	text-align: left;
	font-size: 1.3em;
}
.nachrichten-tabelle {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 10px;
    overflow: hidden;
	padding: 10px 5px;
}
.nachrichten-tabelle thead th {
    text-align: left;
    padding: 10px 5px;
}
.nachrichten-tabelle td {
    text-align: left;
    padding: 10px 5px;
}
/* Links oder Rechts über gesamte Zelle steuern */
.nachrichten-zeile td {
    padding: 5px 10px;
}

/* Nachricht links ausgerichtet */
.nachrichten-zeile.links td {
    text-align: left;
}

/* Nachricht rechts ausgerichtet */
.nachrichten-zeile.rechts td {
    text-align: right;
}

.nachricht {
    display: inline-block;
    max-width: 75%;
    padding: 10px 15px;
    border-radius: 12px;
    background-color: #ffc107;
    color: black;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Rechte Nachricht – Stil anpassen */
.nachrichten-zeile.rechts .nachricht {
    background-color: #e00000;
    text-align: left;
}
.report-thread-list li.active-report a {
	color: #ffc107;
	font-weight: bold;
}

.pluender-tabelle {
    width: 80%;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0 10px;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 10px;
    overflow: hidden;
	padding: 10px 5px;
}
.pluender-tabelle thead th {
    text-align: left;
    padding: 10px 5px;
}
.pluender-tabelle td {
    text-align: left;
    padding: 10px 5px;
}
.button-link {
    display: flex;
    padding: 4px 8px;
    margin: 2px;
    font-size: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    text-decoration: none;
	width: 30px;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.button-link:hover {
    background-color: #45a049;
}