/* Globaler Stil für alle Elemente */
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  background-color: #1b1c1d;
  color: #fffae6;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 25px;
}

p {
  margin-top: 0;
  margin-bottom: 20px;
}

a {
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #000;
  border-bottom: 2px solid #00639c;
}

/* Navbar-Stile */
nav {
  background-color: #213b58;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  height: 60px;
  /* Höhe der Navbar angepasst */
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 15px;
  /* Abgerundete Ecken für die Navbar */
  margin: 15px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

nav li {
  align-items: center;
  margin-right: 15px;
  /* Abstand zwischen den Navbar-Elementen angepasst */
  margin-top: 10px;
}

#funk_dropdown {
  margin-top: 0px;
}


nav a {
  color: #fffae6;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 15px;
  /* Innenabstand angepasst */
  transition: all 0.3s ease-in-out;
}

nav a:hover {
  background-color: #2d465e;
}

/* Dropdown-Stile */
.custom-dropdown {
  display: inline-block;
  position: relative;
  width: 200px;
}

.dropdown-text {
  background-color: #1f2a38;
  padding: 10px;
  border-radius: 5px;
  color: #fffae6;
  cursor: pointer;
}

.dropdown-options {
  display: none;
  position: absolute;
  background-color: #1f2a38;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 1;
  border-radius: 20px;
  color: #fffae6;
  top: 100%;
  /* Abstand vom unteren Rand des Texts */
  left: 0;
  width: 100%;
  /* Optionen nehmen die volle Breite */
}

.dropdown-options a {
  display: block;
  margin-bottom: 15px;
  /* Abstand zwischen den Optionen */
  margin-top: 0;
  /* Kein oberer Abstand für die Optionen */
  background-color: #2c3e50;
  color: #fffae6;
  text-decoration: none;
}

.custom-dropdown:hover .dropdown-options {
  display: block;
  /* Dropdown anzeigen, wenn das übergeordnete Element gehovert wird */
}

/* Benutzerinfo-Stile */
nav .user-info {
  display: flex;
  align-items: center;
  color: #fffae6;
}

nav .user-info p {
  margin: 0;
  margin-left: 15px;
  font-weight: bold;
}

/* Reaktionsschnelles Design für mobile Geräte */
@media (max-width: 768px) {
  nav {
    height: 50px;
    /* Höhe der Navbar für kleine Bildschirme verringert */
    padding: 0 10px;
    /* Innenabstand für kleine Bildschirme verringert */
  }

  nav ul {
    display: none;
    /* Verstecke Navbar-Elemente für kleine Bildschirme */
  }

  nav .user-info {
    display: none;
    /* Verstecke Benutzerinfo für kleine Bildschirme */
  }
}

/* Dropdown-Stil für die select-Elemente in der Navbar */
nav select {
  background-color: #1f2a38;
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 160px;
  /* Breite der Dropdowns in der Navbar angepasst */
  font-size: 16px;
  color: #fffae6;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

nav select option {
  font-size: 16px;
  padding: 10px;
  background-color: #1f2a38;
  color: #fffae6;
}

nav select:focus {
  outline: none;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

nav select:hover {
  background-color: #2c3e50;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

/* Dropdown-Stil für die select-Elemente */
select {
  font-size: 16px;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #2d6585;
  color: #fffae6;
  width: 200px;
}

select option {
  font-size: 16px;
  padding: 10px;
  background-color: #2d6585;
  color: #fffae6;
}

select:focus {
  outline: none;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
}

select:hover {
  cursor: pointer;
  background-color: #3f88b3;
}


/* Stil für normale Input-Felder */
input[type="tel"],
input[type="address"],
input[type="number"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="message"],
input[type="date"] {
  background-color: #1f2a38;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  width: 400px;
  height: 30px;
  font-size: 16px;
  color: #fffae6;
}

textarea {
  background-color: #1f2a38;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  width: 400px;
  height: 140px;
  font-size: 16px;
  color: #fffae6;
}

/* Stil für Submit-Button */
input[type="submit"] {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}

input[type="submit"]:hover {
  background-color: #2c3e50;
}

.pagination {
  padding: 25px;
}

.pagination a {
  border-radius: 6px;
  background: #202020;
  max-width: auto;
  cursor: pointer;
  padding: 0 6px;
}

.pagination a.active {
  border-radius: 5px;
  background: lighten(#202020, 3%);
}

.log-header {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search {
  width: 750px;
  height: 44px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.input-search {
  all: unset;
  font: 16px system-ui;
  color: #fffae6;
  height: 100%;
  width: 100%;
  padding: 6px 10px;
}

/* Clear floats */
form.search::after {
  content: "";
  clear: both;
  display: table;
}

/* Neuer Teil für die Anmeldung/Regestrierung */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.update_user_info {
  display: grid;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-bottom: 100px;
  grid-template-columns: auto auto auto;
}

.grid-item {
  text-align: center;
}



label {
  display: inline-block;
  margin-bottom: 5px;
}

/* Stil für spezifische Klassen */
.registe_input {
  background-color: #1f2a38;
  padding: 10px;
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  width: 400px;
  height: 30px;
  font-size: 16px;
  color: #fffae6;
}

.registe_submit_button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 18px;
}

.registe_submit_button:hover {
  background-color: #2c3e50;
}

/* Button zum Ausloggen */
.logout-button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
}

.logout-button:hover {
  background-color: #2c3e50;
}

/* Hintergrundfarbe und Schriftfarbe für den Seiteninhalt */
.container {
  background-color: #115063;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

/* Überschriften */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Tabellen */
table {
  border-collapse: collapse;
  width: 80%;
  margin: 50px auto;
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #213b58;
}

th {
  background-color: #213b58;
}

/* Button zum Ändern des Rangs */
button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 10px;
}

button:hover {
  background-color: #2c3e50;
}

.btn-group button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 10px;
  cursor: pointer;
  /* Pointer/hand icon */
  float: left;
  /* Float the buttons side by side */
}

.btn-group button:not(:last-child) {
  border-right: none;
  /* Prevent double borders */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #3e8e41;
}

.product-grid {
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 75px;
  margin: 20px;
}

.product-tile {
  background-color: #2c3e50;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.product-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.product-tile img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.product-tile h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.product-tile p {
  font-size: 18px;
  margin-bottom: 20px;
}

.product-tile button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.product-tile button:hover {
  background-color: #2c3e50;
}


.form_order label {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fffae6;
}

.form_order input {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.form_order textarea[name="address"] {
  background-color: #2d6585;
  margin-bottom: 20px;
  font-size: 16px;


  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.form_order button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.form_order button:hover {
  background-color: #2c3e50;
}

input[type="button"][name="delete"] {
  background-color: red;
  color: #fffae6;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Füge hier dein individuelles CSS für Design und Branding hinzu */
.index-container {
  display: flex;
}

.left {
  flex: 2;
}

.right {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: 500px 500px;
}

.right h2 {
  margin-top: 0;
}

.kachel {
  background-color: #213b58;
  border-radius: 10px;
  padding: 40px;
  height: 650px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin: 30px;
}

.kachel-right {
  background-color: #2c3e50;
  border-radius: 10px;
  width: 450px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin: 20px;
}

.kachel-left {
  background-color: #2c3e50;
  border-radius: 10px;
  padding: 40px;
  padding-bottom: 75px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin: 30px;
}

.download-button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 10px;
}

.terrarium-button {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 10px;
}



.footer {
  padding: 10px;
  position: static;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 10%;
  background: #010A11;
  font-family: 'Play', sans-serif;
  text-align: center;
  border-radius: 20px;
  margin: 15px;
  margin-right: 15px;
  color: #fffae6;
  box-sizing: content-box;
}

.footer .row {
  width: 100%;
  margin: 1% 0%;
  color: #fffae6;
  font-size: 0.8em;
}

.footer .row a {
  text-decoration: none;
  color: #fffae6;
  transition: 0.5s;
}

.footer .row a:hover {
  color: #fffae6;
}

.footer .row ul {
  width: 100%;
}

.footer .row ul li {
  display: inline-block;
  margin: 0px 30px;
}

.footer .row a i {
  font-size: 2em;
  margin: 0% 1%;
}

.footer-stand {
  padding: 110px;
}

@media (max-width:720px) {
  .footer {
    text-align: left;
    padding: 5%;
  }

  .footer .row ul li {
    display: block;
    margin: 10px 0px;
    text-align: left;
  }

  .footer .row a i {
    margin: 0% 3%;
  }
}

.impressum {
  padding-left: 25%;
  padding-right: 25%;

  align-items: center;
}

/* CSS-Styling für das Popup-Fenster */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2c3e50;
  padding: 40px;
  border: 2px solid black;
  border-radius: 15px;
  box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.418);
}

input[type="message"] {
  background-color: #2d6585;
  padding: 5px;
  border-radius: 5px;
  border: none;
  margin-bottom: 20px;
  width: 500px;
  height: 30px;
  font-size: 16px;
}

.popupclose {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 20px;
}

.popupsubmit {
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 20px;
  padding: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* Hier die Breite ändern */
  gap: 20px;
  text-decoration: none;
}

.custom-tile {
  text-decoration: none;
  background-color: #213b58;
  border-radius: 10px;
  padding: 40px;
  /* height: 650px; Kommentiere oder entferne diese Zeile, wenn die Höhe in Ordnung ist */
  width: 100%;
  /* Füge diese Zeile hinzu, um die Kacheln in der Breite auszufüllen */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.custom-tile img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  text-decoration: none;
}


.fstorage_titel {
  background-color: #213b58;
  padding: 20px;
  width: 20%;
  border-radius: 5px;
  color: #fffae6;
  font-size: 18px;
  text-align: center;
}

.file-list {
  margin-top: 20px;
  border-radius: 5px;
  background-color: #1b1c1d;
  padding: 20px;
}

.file-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.file-table th,
.file-table td {
  border: 1px solid #2c3e50;
  padding: 10px;
  text-align: left;
}

.file-table th {
  background-color: #213b58;
  color: #fffae6;
}

.file-table td a {
  color: #fffae6;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.file-table td a:hover {
  text-decoration: none;
  color: #7dacc2;
}



.urlshorter {
  text-align: center;
  margin-top: 50px;
}

.urlshorter h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.urlshorter_form {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin: 0 auto;
}

.urlshorter_input {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 16px;
}

.urlshorter_button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #4CAF50;
  color: #fffae6;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.urlshorter_button:hover {
  background-color: #45a049;
}

.users_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.users_kachel {
  background-color: #213b58;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin: 30px;
  display: flex;
  flex-direction: column;
}

.botten_glue {
  margin-top: auto;
}

.funk_table {
  border: #fffae6;
  border-radius: 5px;
  margin-bottom: 150px;
}

.funk_table_tr {
  border-bottom: 4px solid #213b58;
}

/* 
.funk_table_td:nth-child(even) {
  background-color: #303234;
}
*/

.funk_table_tr:nth-child(even) {
  background-color: #303234;
}

.funk_filter {
  display: flex;
  justify-content: center;

}

/* Dropdown-Stile */
.funk_filter_dropdown {
  display: inline-block;
  position: relative;
  width: 200px;
}

.funk_filter_dropdown-text {
  background-color: #1f2a38;
  padding: 10px;
  border-radius: 5px;
  color: #fffae6;
  cursor: pointer;
}

.funk_filter_dropdown-options {
  display: none;
  position: absolute;
  background-color: #1f2a38;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 10px;
  z-index: 1;
  border-radius: 20px;
  color: #fffae6;
  top: 100%;
  /* Abstand vom unteren Rand des Texts */
  left: 0;
  width: 100%;
  /* Optionen nehmen die volle Breite */
}

.funk_filter_dropdown-options a {
  display: block;
  margin-bottom: 15px;
  /* Abstand zwischen den Optionen */
  margin-top: 0;
  /* Kein oberer Abstand für die Optionen */
  background-color: #2c3e50;
  color: #fffae6;
  text-decoration: none;
}

/* CSS-Styling für das Popup-Fenster */
.add_item_motorola_gp {
  height: 40;
  display: wrap;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2c3e50;
  padding: 20px;
  border: 2px solid black;
  border-radius: 15px;
  box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.418);
}

.add_item_form_motorola_gp {
  margin-top: auto;
  margin-bottom: auto;
}



.add_item_form_retevis {
  width: 36%;
  height: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /* Ändere space-around zu flex-start */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #2c3e50;
  padding: 20px;
  border: 2px solid black;
  border-radius: 15px;
  box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.418);
}

.add_item_form_retevis input {
  margin: 10px;
  min-width: 150px;
  max-width: 300px;
}

.add_item_form_retevis_button_div {
  display: flex;
  justify-content: space-between;
}

.add_item_form_retevis_button {
  display: inline-block;
  background-color: #213b58;
  color: #fffae6;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin: 10px;
}



.custom_button {
  width: 60px;
  height: 20px;
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid #000;
  transition: all 0.3s ease-in-out;
}

.custom_button:hover {
  color: #000;
  border-bottom: 2px solid #00639c;
}




.web_statistic_body {
  display: flex;
  justify-content: space-around;
}

.web_statistic_left,
.web_statistic_middle,
.web_statistic_right {
  width: 30%;
  padding: 20px;
  border: 1px solid #fffae6;
  margin: 10px;
  border-radius: 15px;
}

#snow {
  text-align: center;
}







/* 
#snow{
  background-image:url('https://i.imgur.com/ChQcWgQ.png'), url('https://i.imgur.com/5gvatHT.png'), url('https://i.imgur.com/pUPB6gi.png');
  padding-bottom: 80%;
  -webkit-animation:snow 10s linear infinite;
  -moz-animation:snow 10s linear infinite;
  -ms-animation:snow 10s linear infinite;
  animation:snow 10s linear infinite
}
@keyframes snow{
  0%{background-position:0px 0px, 0px 0px, 0px 0px}
  50%{background-position:500px 500px, 100px 200px, -100px 150px}
  100%{background-position:500px 1000px, 200px 400px, -100px 300px}
}
@-moz-keyframes snow{
  0%{background-position:0px 0px, 0px 0px, 0px 0px}
  50%{background-position:500px 500px, 100px 200px, -100px 150px}
  100%{background-position:400px 1000px, 200px 400px, 100px 300px}
}
@-webkit-keyframes snow{
  0%{background-position:0px 0px, 0px 0px, 0px 0px}
  50%{background-position:500px 500px, 100px 200px, -100px 150px}
  100%{background-position:500px 1000px, 200px 400px, -100px 300px}
}
@-ms-keyframes snow{
  0%{background-position:0px 0px, 0px 0px, 0px 0px}
  50%{background-position:500px 500px, 100px 200px, -100px 150px}
  100%{background-position:500px 1000px, 200px 400px, -100px 300px}
}



##########################
########## APRS ##########
##########################
*/

.aprs-h1 {
  text-align: center;
  color: #fffae6;
}

.aprs-form {
  max-width: 500px;
  margin: 20px auto;
  background-color: #333;
  /* Dunkler Hintergrund für das Formular */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.aprs-label {
  display: block;
  margin-bottom: 8px;
}

.aprs-input {
  width: 70%;
  padding: 10px;
  margin-bottom: 16px;
  box-sizing: border-box;
  border: 1px solid #555;
  /* Dunkler Rand für das Input-Feld */
  border-radius: 4px;
  background-color: #444;
  /* Dunkler Hintergrund für das Input-Feld */
  color: #fffae6;
  /* Helle Schriftfarbe für das Input-Feld */
}

.aprs-button {
  background-color: #007bff;
  color: #fffae6;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.aprs-button:hover {
  background-color: #0056b3;
}

.coordinates {
  text-align: center;
  color: #008000;
  /* Grüne Farbe für Koordinaten */
}

.error {
  text-align: center;
  color: #ff0000;
  /* Rote Farbe für Fehlermeldungen */
}

.api-response {
  text-align: center;
  margin-top: 20px;
  white-space: pre-wrap;
  /* Umbruch für Zeilenumbrüche beibehalten */
  color: #fffae6;
  /* Helle Schriftfarbe für die API-Antwort */
}

/* Responsive Layout */
.download_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.download_tile {
  width: 500px;
  margin: 20px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #333;
  border-radius: 10px;
  /* Füge diese Zeile hinzu, um die Kacheln in der Breite auszufüllen */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}