body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
    margin: 0;
    padding: 0;
    hyphens: auto;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
      border-radius: 8px;  
}
input[type="text"],
input[type="password"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ffffff; /* Weiße Konturen */
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #333;
    color: #ffffff;
}
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc; /* Graue Konturen */
}
table th, table td {
    border: 1px solid #ccc; /* Graue Konturen */
    padding: 8px;
    text-align: left;
}
table th {
    background-color: #2c2c2c;
    color: white;
}
table tr:nth-child(even) {
    background-color: #444;
}
/* Button styles */
button {
    background-color: #555;
    color: #fff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    padding: 8px 8px;
    margin-right: 2px;
    cursor: pointer;
    hyphens: none;
}
button:hover {
    background-color: #777;
}

/* Button "Dateien" mit Abstand von allen Seiten */
#dateienButton {
    width: 100%; /* Button nimmt die gesamte Breite ein */
    margin-bottom: 20px; /* Abstand oben und unten von 20px */
    font-weight: bold;
}




/* Wrapper-Div für die Tabelle */
.table-wrapper {
    overflow-x: auto; /* Ermöglicht horizontales Scrollen */
    -webkit-overflow-scrolling: touch; /* Für sanftes Scrollen auf mobilen Geräten */
}

/* Tabelle */
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc; /* Graue Konturen */
}

table th, table td {
    border: 1px solid #ccc; /* Graue Konturen */
    padding: 8px;
    text-align: left;
}

table th {
    background-color: #2c2c2c;
    color: white;
}

table tr:nth-child(even) {
    background-color: #444;
}

table th:nth-child(4),
table td:nth-child(4) {
    min-width: 150px; /* Mindestbreite von 150px für die Spalte */
}
