@charset "utf-8";
/* Allgemeine Schriftarten und Farben */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0px;
}

/* Überschriften */
h1, h2 {
    color: #000000;
}

h2 {
    padding-bottom: 5px;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Dropdown-Menü */
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0px;
    background-color: #ffffff;
    font-size: 16px;
    color: #495057;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zM2 5L0 3h4z'/%3E%3C/svg%3E'); */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 10px;
    margin-bottom: 20px;
}

/* Dropdown-Menü im Fokus */
select:focus {
    /* border-color: #007bff; */
    outline: none;
    /*box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); */
}

/* Tabellen */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

th {
    background-color: #d8f3f1;
    color: #1c2834;
    text-transform:uppercase;
}

tr:nth-child(even) {
   /* background-color: #f2f2f2; */
}

tr:hover {
    /* background-color: #e9ecef; */
}

/* Absätze */
p {
    margin: 10px 0;
}