/* Grundlayout */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #222;
}

/* Header */
.header {
    background: #f5f7fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #111;
}

/* Formular */
label {
    display: block;
    width: 100px;
}


/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Sektionen */
.section {
    background: #f7f9fc;
    padding: 20px 15px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Überschriften */
h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 600;
}

/* Eingabefelder */
select,
input[type="text"],
input[type="password"] {
    width: 80%;
    padding: 6px;
    margin: 3px 0 3px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

/* Buttons */
button,
 .btn {
    display: inline-block;
    background: #0078ff;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}
button:hover, .btn:hover {
    background: #005fcc;
}
input[type="submit"] {
    background: #0078ff;
    color: white;
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
}

input[type="submit"]:hover {
    background: #005fcc;
}

/* Grunddesign für Tabellen */
.myTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 16px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Tabellenkopf */
.myTable .header th {
    background: #f5f7fa;
    color: #111;
    text-align: left;
    padding: 7px 16px;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

/* Normale Zeilen */
.myTable td {
    padding: 6px;
    border-bottom: 1px solid #eaeaea;
}

/* Abwechselnde Hintergrundfarbe */
.myTable tr.data {
    background: #f9fbff;
}

/* Hover-Effekt */
.myTable tr:hover {
    background: #eef4ff;
}

/* Mobile-Optimierung */
@media (max-width: 600px) {
    .myTable {
        font-size: 14px;
    }

    .myTable td,
    .myTable th {
        padding: 5px;
    }
}



/* Mobile */
@media (max-width: 600px) {
    .header h1 {
        font-size: 24px;
    }

    .section {
        padding: 25px 20px;
    }

    .btn {
        width: 100%;
    }
}
