/* Container & Boxen */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
.boxed {
    max-width: 900px;      /* gleiche Breite wie dein Haupt-Container */
    margin: 20px auto 0;   /* zentriert */
    background: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 6px;
}

/* Tabellen & Wrapper */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
}
.heat-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    text-align: center;
    border: 4px solid #000;
    background-color: #333;
    color: #fff;
    min-width: 700px;
}
.heat-table th,
.heat-table td {
    padding: 10px;
    border: 1px solid #555;
    font-weight: 600;
    word-break: break-word;
}
.heat-table th {
    background-color: #333;
    color: #fff;
    font-style: italic;
    font-weight: bold;
}
.golden {
    color: goldenrod;
    font-weight: bold;
}

/* Bilder zentrieren & responsiv */
.center img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .center img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 600px) {
    .heat-table {
        font-size: 11px;
        min-width: 0;
    }
    .heat-table th,
    .heat-table td {
        padding: 6px;
    }
}

.heat-table .mark {
    color: #E2D07A;
    font-weight: bold;
    font-size: 18px;
}

.heat-table .action {
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
}

.table-box {
  background: #4f4f4f;
  padding: 20px 30px;
  border-radius: 12px;
  text-align: center;
  margin: 30px auto;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.table-box h1 {
  color: #ffffff;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.thread-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  color: #fff;
  font-size: 1rem;
  background: #626262;
  border-radius: 10px;
  overflow: hidden;
}

.thread-table th,
.thread-table td {
  padding: 10px;
  border: 4px solid #000;
}

.thread-table th {
  background: #555;
  font-weight: bold;
}

.thread-table tr:nth-child(even) {
  background: #5b5b5b;
}

.thread-table .highlight {
  background: #777 !important;
  font-weight: bold;
  color: #fff;
}

.thread-info {
    text-align: left;
    color: #fff;
    font-style: italic;
    margin-bottom: 20px;
}
