@charset "utf-8";
/* ===============================
   🎧 Modernes Neon-Webradio CSS
   =============================== */

/* ====== BODY & GRUND ====== */
body, body#onair_body {
  background-color: #313335;
  color: #e6e6e6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin: 0;
  padding: 0;
}

/* ====== WRAPPER ====== */
div#wrapper {
  margin: 20px auto;
  padding: 20px;
  max-width: 1000px;
  background-color: #111;
  border-radius: 12px;
  box-shadow: 0 0 20px #39ff14;
  border: 1px solid #39ff14;
}

/* ====== HEADER / NAVIGATION ====== */
div#navi {
  background-color: #111;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 0 15px #39ff14;
  padding: 10px 0;
}

div#navi ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

div#navi ul li {
  margin: 0 10px;
}

div#navi ul li a {
  color: #39ff14;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #39ff14;
}

div#navi ul li a:hover,
div#navi ul li a#current {
  background-color: #000;
  box-shadow: 0 0 20px #39ff14, 0 0 40px #39ff14;
  transform: scale(1.05);
}

/* ====== Sendeplan-Tabelle ====== */
table.content {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  box-shadow: 0 0 15px #39ff14;
}

table.content th,
table.content td {
  padding: 12px;
  border: 1px solid #39ff14;
  text-align: center;
  color: #e6e6e6;
}

table.content th {
  background-color: #111;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
}

table.content tr:nth-child(odd) {
  background-color: #111;
}

table.content tr:nth-child(even) {
  background-color: #222;
}

table.content tr:hover {
  background-color: #333;
  box-shadow: 0 0 15px #39ff14 inset;
}

/* ====== HEADLINES ====== */
h1.headline, h2.headline, h3.headline {
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
  margin-bottom: 12px;
}

/* ====== FOOTER ====== */
div#footer {
  padding: 15px;
  background-color: #111;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 15px #39ff14 inset;
}

/* ====== LINKS ====== */
a {
  color: #39ff14;
  text-decoration: underline;
}

a:hover {
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
}

/* ====== FORM & BUTTONS ====== */
input, select, textarea, button {
  background-color: #111;
  color: #39ff14;
  border: 1px solid #39ff14;
  border-radius: 6px;
  padding: 8px 12px;
  box-shadow: inset 0 0 10px #39ff14;
  font-weight: bold;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus, button:focus {
  box-shadow: 0 0 20px #39ff14;
  outline: none;
  transform: scale(1.02);
}

button:hover, input[type=submit]:hover {
  background-color: #000;
  box-shadow: 0 0 30px #39ff14, 0 0 50px #39ff14;
  transform: scale(1.05);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  div#wrapper {
    width: 95%;
    padding: 15px;
  }

  div#navi ul {
    flex-direction: column;
  }

  div#navi ul li {
    margin: 5px 0;
  }
}






























