body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1em;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input, select, button {
  padding: 0.5em;
  font-size: 1em;
}

@media (max-width: 600px) {
  .container {
    padding: 0.5em;
  }
}

/*table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}

th, td {
  padding: 0.5em;
  border: 1px solid #ccc;
  text-align: left;
}
*/
.button {
  display: inline-block;
  padding: 0.5em 1em;
  background: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1em;
}
/*
@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  th {
    background: #eee;
  }

  td {
    border: none;
    position: relative;
    padding-left: 50%;
  }

  td::before {
    position: absolute;
    left: 0;
    width: 45%;
    padding-left: 0.5em;
    font-weight: bold;
    white-space: nowrap;
    content: attr(data-label);
  }
}
*/
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #0b0f1a;
  color: #e0e0e0;
}

.site-header {
  background: #1f2733;
  padding: 1em;
  box-shadow: 0 0 20px rgba(255, 92, 0, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1em;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo-container img {
  height: 100px;
}

.logo-text h1 {
  margin: 0;
  font-size: 1.8em;
  color: #e0e0e0;
}

.logo-text span,
.site-header .user {
  color: #ff5c00;
  font-weight: bold;
}

.site-header .user{
  right: 0;
  position: absolute;
}

.container {
  max-width: 1200px;
  margin: 2em auto;
  padding: 2em;
  background: #1f2733;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
  border-radius: 8px;
}

input, select, button {
  padding: 0.5em;
  font-size: 1em;
  background: #0b0f1a;
  color: #e0e0e0;
  border: 1px solid #ff5c00;
  border-radius: 4px;
}

button {
  background: #ff5c00;
  color: #0b0f1a;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  background: #ff7700;
}

a {
  color: #ff5c00;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.table-wrapper {
  overflow-x: auto;
  margin-top: 1em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
}

table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background: #1f2733;
  color: #e0e0e0;
}

thead {
  background: #0b0f1a;
}

th {
  padding: 0.75em;
  text-align: left;
  font-weight: bold;
  color: #ff5c00;
  border-bottom: 2px solid #ff5c00;
}

td {
  padding: 0.75em;
  border-bottom: 1px solid #2c3442;
}

tr:hover {
  background: #2a3240;
}
#scoreChart {
  background: #1f2733;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
}
.site-footer {
  background: #1f2733;
  color: #e0e0e0;
  text-align: center;
  padding: 1.5em 1em;
  margin-top: 3em;
  font-size: 0.9em;
  border-top: 1px solid #2c3442;
}

.site-footer a {
  color: #ff5c00;
  text-decoration: none;
  margin: 0 0.5em;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  margin-bottom: 0.5em;
}

.footer-credit {
  opacity: 0.8;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-top: 2em;
}

.card-item {
  background: #1f2733;
  border-radius: 8px;
  padding: 1em;
  width: 280px;
  box-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-item video {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5em;
}

.card-label {
  color: #ff5c00;
  font-weight: bold;
  text-align: center;
  font-size: 1em;
}
.card-item video {
  width: 100%;
  height: 420px;
  object-fit: fill; /* Bild füllt Container aus */
}

h2{
  margin-top: 0;
}
