body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #090808;
    color: white;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #151515;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: solid red 1px;
    text-align: center;
}

h1, h2 {
    text-align: center;
    line-height: 0%;
    --glow-color: rgba(123, 121, 121, 0.18);
    --glow-spread-color: rgba(117, 114, 114, 0);
    --enhanced-glow-color: rgb(215, 200, 230);
    --btn-color: rgb(198, 27, 27);
    border: .25em solid rgb(187, 37, 37);
    padding: 1em 3em;
    color: rgb(240, 230, 230);
    font-size: 22px;
    font-weight: bold;
    border-radius: 1em;
    outline: none;
    box-shadow: 0 0 1em .25em rgba(21, 21, 21, 0.09), 0 0 4em 1em rgba(96, 89, 89, 0.78), inset 0 0 .75em .25em rgba(9, 8, 8, 0.15);
    text-shadow: 0 0 .5em rgba(217, 10, 10, 0);
    position: relative;
    transition: all 0.3s;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(11,11,11,1) 3%, rgb(50, 47, 47) 50%, rgba(9,9,9,1) 98%);
}

.challenge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    background: #333;
    border-radius: 5px;
}

.challenge-list label {
    text-align: center;
}

.challenge-name {
    flex-grow: 1;
    text-align: center;
}

.delete-form {
    margin-left: 10px;
    text-align: center;
}

/* Zentrierung für Formulareingaben */
form input[type="text"],
form input[type="submit"],
form button {
    margin: 0 auto;
    display: block;
    text-align: center;
}

/* Button-Stil */
.delete-button {
    background: linear-gradient(180deg, rgba(14,14,14,1) 22%, rgba(255, 0, 0, 1) 50%, rgba(10,10,10,1) 82%);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
}

.delete-button:hover {
    background: linear-gradient(0deg, rgb(11, 11, 11) 3%, rgb(255, 0, 0) 50%, rgb(9, 9, 9) 98%);
}

.vote-button, .add-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: linear-gradient(180deg, rgba(14,14,14,1) 22%, rgba(253,29,29,1) 50%, rgba(10,10,10,1) 82%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    text-align: center;
}

.vote-button:hover, .add-button:hover {
    background: linear-gradient(0deg, rgb(11, 11, 11) 3%, rgb(15, 157, 11) 50%, rgb(9, 9, 9) 98%);
}

.add-song-form {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.add-song-form input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
}

.results {
    margin-top: 20px;
    padding: 20px;
    background-color: #222;
    border-radius: 10px;
    text-align: center;
}

.results li {
    margin: 5px 0;
    padding: 5px;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.success-message {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.auto-style1 {
    color: silver;
    text-align: center;
}

h6 {
    color: grey;
    font-size: 12px;
    text-align: center;
}

/* Entfernt Punkte aus allen Listen */
ul, ol {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
input[type="radio"] {
    transform: scale(2); /* 2x größer */
    margin: 10px;
    accent-color: red; /* optional: rote Farbe */
    cursor: pointer;
}
    /* Ergebnis-Box-Stil */
    .result-item {
        font-size: 20px;
        padding: 15px;
        border-bottom: 2px solid #ccc;
        margin-bottom: 10px;
    }

