/* === Desktop Styles === */
table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: Arial, sans-serif;
}

thead {
  background: #0abab5;
  color: white;
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

tbody tr:nth-child(even) {
  background: #f9f9f9;
}

tbody tr:hover {
  background: #e6f7f6;
  transition: background 0.3s;
}

/* === Mobile Styles === */
@media screen and (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }

  thead tr {
    display: none; /* Kopfzeile ausblenden */
  }

  tbody tr {
    margin: 0 0 15px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    background: #fff;
  }

  td {
    display: block;
    text-align: left;
    padding: 6px 0;
    border: none;
  }

  td:before {
    display: block;         /* Label über Inhalt */
    font-weight: bold;
    margin-bottom: 4px;
    color: #555;
    content: attr(data-label); /* Holt Label aus HTML-Attribut */
  }
}
