/* Container & Boxen */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
.boxed {
    background: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 6px;
    margin: 20px auto 0 auto;
}

/* Tabellen & Wrapper */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.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;
}
