body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Achtergrond van de hele pagina zwart */
    color: #fff; /* Tekstkleur wit voor de hele pagina */
}

.header {
    background-color: #000;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid red; /* Dit voegt een rode lijn toe onder de header */
}

.logo {
    max-height: 40px;
}

.content {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: #000; /* Achtergrond van de content zwart */
    border-radius: 5px;
 /*   box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* Lichtgrijze schaduw voor contrast */
}

h1, h2 {
    text-align: center;
    margin-bottom: 40px;
}

input[type="email"], input[type="text"], input[type="submit"], input[type="checkbox"] + label {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #333; /* Donkergrijze achtergrond voor invoervelden */
    color: #fff; /* Witte tekstkleur voor invoervelden */
    border: 1px solid #555; /* Donkergrijze rand voor invoervelden */
    border-radius: 3px;
}

input[type="email"], input[type="text"], input[type="submit"] {
    box-sizing: border-box; /* Zorgt ervoor dat padding en border binnen de totale breedte vallen */
}

input[type="checkbox"] {
    margin-right: 10px;
    vertical-align: middle;
}

label {
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    cursor: pointer; /* Handcursor voor het label om aan te geven dat het klikbaar is */
}

input[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #555; /* Donkergrijze achtergrond voor de verzendknop */
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #777; /* Lichtere grijstint voor hover-effect */
}

input::placeholder {
    color: #aaa; /* Lichtgrijze kleur voor placeholders */
}

.message {
    margin-top: 20px;
    text-align: center;
    color: #f00; /* Rode kleur voor berichten voor betere zichtbaarheid */
}

.top-result {
    background-color: green;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 5px;
    margin-top:-50px;
}

.other-results {
    list-style-type: none;
    padding: 0;
}

.other-results li {
    background-color: #333;
    color: #fff;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
}

.winning-number {
    font-size: 28px;
    font-weight: bold;
}

.winning-votes {
    font-size: 12px;
}

