@charset "utf-8";

:root {
    --col-dark: #042C53;
    --col-light: #B5D4F4;
    --col-mid: #185FA5;
}

/* block1 – Block J: horizontal, Wert links groß, Name/Info/Zeit rechts */
.block1 {
    border: 0.5px solid var(--col-light);
    border-radius: 8px;
    display: inline-flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
}
.block1 .bVal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    font-size: 22px;
    font-weight: 700;
    min-width: 0;
    background: var(--col-dark);
    color: var(--col-light);
    white-space: nowrap;
}
.block1 .bRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 6px;
    background: #f0f7ff;
    border-left: 0.5px solid var(--col-dark);
    min-width: 0;
}
.block1 .bName {
    font-size: 13px;
    font-weight: 500;
    color: var(--col-dark);
}
.block1 .bInfo {
    font-size: 12px;
    color: var(--col-mid);
    margin-top: 2px;
}
.block1 .bTime {
    font-size: 11px;
    color: var(--col-mid);
    margin-top: 2px;
    padding-top: 2px;
    border-top: 0.5px solid var(--col-dark);
}

/* table */
table td, table th {
    padding: 2px 10px;
    text-align: center;
}
table th {
    background-color: #666;
    color: #fff;
    font-weight: bold;
}
table tr:nth-child(1n+2) { background-color: #ccffcc; color: #000; }
table tr:nth-child(2n+3) { background-color: #fff5dd; color: #000; }
table tr:hover           { background-color: #c00;    color: #fff; }

/* zoomButton */
.zoomButton {
    height: 24px;
    padding: 0 8px;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    background: #f0f7ff;
    color: var(--col-dark);
}
.zoomButton.active {
    height: 26px;
    font-size: 22px;
    background: var(--col-dark);
    color: var(--col-light);
}

/* sektion – Variante E: mittelblaues Header, heller Body */
.sektion {
    border: 0.5px solid var(--col-dark);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}
.sektion h2 {
    background: var(--col-mid);
    color: var(--col-light);
    font-size: 13px;
    font-weight: 700;
    margin: 0;
    padding: 3px 10px;
}
.sektion .inner {
    background: #f0f7ff;
    padding: 4px 6px;
}

/* blockIp – Link zur IP-Adresse, gleiches Schema wie block1 */
.blockIp {
    border: 0.5px solid var(--col-light);
    border-radius: 8px;
    display: inline-flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
}
.blockIp .bVal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    font-size: 22px;
    font-weight: 700;
    min-width: 0;
    background: var(--col-dark);
    color: var(--col-light);
    white-space: nowrap;
}
.blockIp .bVal a:link,
.blockIp .bVal a:visited { color: var(--col-light); text-decoration: none; }
.blockIp .bVal a:hover   { text-decoration: underline; }
.blockIp .bRight {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2px 6px;
    background: #f0f7ff;
    border-left: 0.5px solid var(--col-dark);
    min-width: 0;
}
.blockIp .bName {
    font-size: 13px;
    font-weight: 500;
    color: var(--col-dark);
}
.blockIp .bTime {
    font-size: 11px;
    color: var(--col-mid);
    margin-top: 2px;
    padding-top: 2px;
    border-top: 0.5px solid var(--col-dark);
}