.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Box Hintergrund */
.boxed {
    background: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 6px;
    margin: 20px auto 0 auto;
}

/* Tabelle wrapper für horizontales Scroll auf kleinen Bildschirmen */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 20px;
}

/* Heat Table */
.heat-table {
    width: 100%;               /* passt sich Container an */
    border-collapse: collapse;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 13px;
    text-align: center;
    border: 4px solid #000;
    background-color: #fff;
    color: #111;
    min-width: 700px;          /* verhindert zu kleine Darstellung auf Desktop */
}

.heat-table th,
.heat-table td {
    padding: 10px;
    border: 1px solid #444;
    font-weight: 600;
    word-break: break-word;    /* sorgt für Umbruch langer Inhalte */
}

.heat-table th {
    background-color: #333;
    color: #fff;
    font-style: italic;
    font-weight: bold;
}

.golden {
    color: goldenrod;
    font-weight: bold;
}

/* Mobile Anpassungen */
@media (max-width: 600px) {
    .heat-table {
        font-size: 11px;
        min-width: 0;          /* Tabelle passt sich Mobile an */
    }

    .heat-table th,
    .heat-table td {
        padding: 6px;
    }
}
