.body-login {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    color: #343a40;
}


.exportHeaderLine{
    font-size: 14px;
    padding: 3px;
}

.exportLine{
    font-size: 12px;
}


.exportTable {
    width: 570pt;
}

.body-manager {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f8f9fa;
    color: #343a40;
    display: none;
}
.container {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
button {
    padding: 10px 20px;
    background-color: #0078D4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #005a9e;
}
button:disabled {
    background-color: #D3D3D3;
}

h1, h2 {
    color: #007bff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #dee2e6;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #e9ecef;
    color: #495057;
}

tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

input[type="text"], select, textarea {
    width: 100%;
    padding: 8px;
    margin: 4px 0;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    height: 100px;
}

form {
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.form-checkbox-group label {
    margin-right: 10px;
}

.form-checkbox-group input[type="checkbox"] {
    margin-right: 5px;
}



.textContainer {
    display: flex; /* Aktiviert Flexbox */
    justify-content: space-between; /* Verteilt den Platz gleichmäßig zwischen den Elementen */
}
.textBox {
    width: 23%; /* Setzt die Breite jeder Textbox, sodass 4 nebeneinander passen */
    text-align: center; /* Zentriert den Text innerhalb der Box */
}
.textBox p {
    margin: 5px 0; /* Fügt Abstand zwischen den Zeilen hinzu */
}


.PhoneBookHeader-container {
    display: table;
    margin: auto;
    font-size: 12px;
    text-align: left;
}

.PhoneBookHeader-row {
    display: table-row;
}

.PhoneBookHeader-cell {
    display: table-cell;
    padding: 5px 20px; /* Abstand zwischen den Spalten */
    vertical-align: top;
}

.PhoneBookHeader-label {
    display: inline-block;
    width: 150px; /* Einheitliche Breite für die Labels */
}