/* Default CSS */
/* Generated by the CoffeeCup HTML Editor - www.coffeecup.com */

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
    border: 3px solid #555;
    background-color: #666;
}

.header {
    background-color: #666;
    color: #ff0;
    text-align: center;
    padding: 15px;
    font-size: 28px;
    font-weight: bold;
    border-bottom: 3px solid #555;
}

.title {
    background-color: #000080;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 24px;
    font-weight: bold;
}

.info-section {
    background-color: #ccc;
    padding: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #999;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: bold;
    font-size: 18px;
}

.info-value {
    color: #c00;
    font-weight: bold;
    font-size: 18px;
}

.data-table {
    background-color: #ccc;
    padding: 15px;
    margin-top: 2px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background-color: #bbb;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    border: 1px solid #999;
}

td {
    padding: 10px;
    border: 1px solid #999;
    text-align: center;
}

.label-col {
    text-align: left;
    font-weight: bold;
}

.unit-col {
    text-align: center;
}

.soll-col {
    color: #c00;
    font-weight: bold;
}

.ist-col {
    color: #c00;
    font-weight: bold;
}

.footer {
    background-color: #ccc;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
}

.footer-item {
    font-weight: bold;
}

.footer-value {
    color: #c00;
    font-weight: bold;
}