.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

select, button {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

#result {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

#maleCode, #femaleCode {
    margin-top: 5px;
    display: block;
}

.button-group {
    display: flex;
    gap: 10px;
}

.detailed-results {
    margin-top: 10px;
}

/* Zusätzliche CSS-Regel für die erste Spalte */
.min-width {
    min-width: 150px;
}

/* Striped Rows */
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table td {
  padding-left: 8px !important; /* !important, um Bootstrap's Standard zu überschreiben */
}