/* =========================
   Variablen & Reset
========================= */
:root {
  --primary: #2a9d8f;
  --text:    #333;
  --bg:      #f7f7f7;
  --radius:  8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

.container {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

h1 {
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Grund-Buttons (falls benötigt) */
button {
  font-family: inherit;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}
button:hover {
  background: darken(var(--primary), 10%);
}

/* Übersicht-Card */
.overview-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  overflow-x: auto;
}

/* Tabelle */
#overview-table {
  width: 100%;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

#overview-table th,
#overview-table td {
  padding: 0.75rem 1rem;
  text-align: left;
}

#overview-table th {
  background-color: var(--primary);
  color: #fff;
  position: sticky;
  top: 0;
  font-weight: 500;
}

#overview-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

#overview-table tbody tr:hover {
  background-color: #f1f1f1;
}

#overview-table s {
  color: #bbb;
  text-decoration: none;
  font-style: normal;
}
