form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    gap: 15px;
}

form label {
    font-weight: bold;
}

form input {
    padding: 5px;
    margin-top: 5px;
}


.radio-group{
    display: flex;
    align-items: center;
    justify-content: flex-start;

}

.radio-buttons {
    display: flex;
    flex-direction: column;
    margin-left: 5px; /* Abstand zwischen den Radiobuttons */
    margin-right: 5px;

}


.labelLeft{
    min-width: 150px;
}

.radio-buttons input {
    margin-left: 10px; /* Etwas Abstand nach links */
}

.radio-buttons label {
    display: inline-block; /* Label soll mit dem Input auf gleicher Höhe stehen */
    margin-left: 10px; /* Etwas Abstand zwischen Input und Label */
}
/*
input[type="text"]{
    width: 100%;
}

input[type="radio"]{
    transform: scale(1.5);
}
*/
.resetButton{
    height: 25px;
}

#callsign{
    text-transform: uppercase;
}


