@charset "utf-8";
/* Allgemeine Schriftarten und Farben */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    margin: 0px;
    /* Edge-spezifische Fixes */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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

h2 {
    padding-bottom: 5px;
}

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

/* Dropdown-Menü - Edge-kompatibel */
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0px;
    background-color: #ffffff;
    font-size: 16px;
    color: #495057;
    /* Edge-spezifische appearance-Fixes */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    /* Fallback für Edge */
    background-image: none;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 10px;
    margin-bottom: 20px;
    /* Zusätzliche Edge-Fixes */
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
}

/* Edge-spezifische Select-Fixes */
@supports (-ms-ime-align: auto) {
    select {
        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');
    }
}

/* Dropdown-Menü im Fokus */
select:focus {
    outline: 2px solid #1c2834;
    outline-offset: 2px;
}

/* Druck-Button */
#print-button {
    background-color: #c4c4c4;
    color: #1c2834;
    border: 1px solid #1c2834;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
    margin-right: 5px;
    width: auto;
    min-width: 120px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    /* Edge-spezifische Fixes */
    display: inline-block;
    visibility: visible;
    float: right;
    margin-top: -10px;
}

#print-button:hover {
    background-color: #1c2834;
    color: #ffffff;
}

#print-button:focus {
    outline: 2px solid #1c2834;
    outline-offset: 2px;
}

/* 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;
}

/* Edge-spezifische Container-Fixes */
#gruppengroesse, #leitereinsatz, #sicherheitsbestimmungen {
    display: block;
    visibility: visible;
    opacity: 1;
}