﻿table {
    border-collapse: collapse;
    width: 60%;
    margin: 20px 0;
}

th, td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #333;
}

tr:nth-child(even) {
    background-color: #222;
}

.status-online {
    color: #0f0;
}

.status-offline {
    color: #f00;
}


/* Für Tablets (bis 1200px) */
@media screen and (max-width: 1200px) {
  body {
    font-size: 16px;
  }

  .your-container {
    width: 90%; /* Container in der Breite anpassen */
  }
}

/* Für Mobilgeräte (bis 768px) */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .your-container {
    width: 100%; /* Container füllt den Bildschirm aus */
  }

  /* Navigation anpassen */
  .navbar {
    flex-direction: column; /* Navigation untereinander statt nebeneinander */
  }

  /* Bilder verkleinern */
  img {
    width: 100%; /* Bilder in die Breite des Bildschirms ziehen */
    height: auto;
  }
}