body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.app-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    padding: 20px;
    box-sizing: border-box;
}

.app-button {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 125px;
    /* Anpassung der Button-Polsterung */
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 40px;
    /* Sehr große Schriftgröße für Buttons */
    cursor: pointer;
    transition: background-color 0.3s;
}

.app-button-small {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
    padding: 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 40px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.green-button {
    background-color: #4CAF50;
    /* Grün */
}

.red-button {
    background-color: #FF5733;
    /* Rot */
}

.gray-button {
    background-color: #888888;
    /* Grau */
}

.orange-button {
    background-color: #ffad16;
    /* Orange */
}

/* Allgemeine Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Stile für die Tabelle */
#countersTable {
    width: 100%;
    border-collapse: collapse;
    /* Zellenränder entfernen */
    background-color: #f0f0f0;
    font-size: 18px;
    /* Schriftgröße anpassen */
}

#countersTable th,
#countersTable td {
    padding: 10px;
    /* Zellenpolsterung anpassen */
    text-align: left;
    /* Textausrichtung links */
    border: 1px solid #dddddd;
    /* Zellengrenzen hinzufügen */
    font-size: 60px;
}

/* Stile für die Kopfzeile */
#countersTable th {
    background-color: #333333;
    /* Hintergrundfarbe der Überschriften */
    color: #ffffff;
    /* Textfarbe der Überschriften */
}

/* Stile für die Zeilen (abwechselnde Hintergrundfarbe) */
#countersTable tbody tr:nth-child(even) {
    background-color: #f2f2f2;
    /* Abwechselnde Hintergrundfarbe */
}

/* Stile für die Zeilen (ungerade Zeilen) */
#countersTable tbody tr:nth-child(odd) {
    background-color: #ffffff;
    /* Standard-Hintergrundfarbe */
}



h1 {
    text-align: center;
    /* Zentrierung des Texts */
    font-size: 100px;
    /* Größere Schriftgröße */
    margin: 20px 0;
    /* Optional: Hinzufügen von vertikalem Abstand */
}

* {
    touch-action: manipulation;
}

h2 {
    text-align: center;
    /* Zentrierung des Texts */
    font-size: 50px;
    /* Größere Schriftgröße */
    width: 90vw;
    margin: 20px 0;
    /* Optional: Hinzufügen von vertikalem Abstand */
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

/* Pastellrot für Zeilen mit Belegt >= Kapazität */
.row-color-red {
    background-color: #FFCCCC;
    /* Beispiel für Pastellrot */
}

/* Pastellgrün für Zeilen mit Belegt < Kapazität */
.row-color-green {
    background-color: #CCFFCC;
    /* Beispiel für Pastellgrün */
}

.big-list-item {
    font-size: 60px;
    padding: 10px;
    margin: 10px 0;
    width: 90vw;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    list-style-position: inside;
}