body {
    font-family: 'Arial';
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
}

h1 {
    color: #d9534f;
    text-align: center;
}

section {
    margin-bottom: 20px;
}

.hallentore {
    text-align: center;
}

.tor-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.torColumn1,
.torColumn2,
.wbNummerColumn1,
.wbNummerColumn2 {
    width: 200px; /* Geändert von 400px auf 200px */
}

.tor,
.wb-nummer {
//    margin-bottom: 10px;
    min-height: 94px; /* Passe die Höhe nach Bedarf an */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
}

.tor-info,
.status-selector,
.wb-nummer-info {
    font-weight: bold;
    text-align: center; /* Hinzugefügt */
    min-height: 20px; /* Passe die Höhe nach Bedarf an */
    width: 100px; /* Geändert von 200px auf 100px */
}

button {
    background-color: #d9534f;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #c9302c;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d9534f;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #c9302c;
}


/* Hintergrundfarbe für den Status 'Abladen' */
.status-abladen {
    background-color: red; /* Rot für 'Abladen' */
}

/* Hintergrundfarbe für den Status 'Leer' */
.status-leer {
    background-color: green; /* Grün für 'Leer' */
}

/* Hintergrundfarbe für den Status 'Raus' */
.status-raus {
    background-color: yellow; /* gelb für 'Raus' */
}



