body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 40px;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

h1 {
    color: #1a73e8;
    font-size: 28px;
    margin-bottom: 10px;
}

.container p {
    text-align: left;
    line-height: 1.4;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 👇 Juiste spacing tussen de regels van het antwoord */
.output p {
    margin-bottom: 1em;
}

form {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Zorg voor consistente hoogte en nette uitlijning */
select, input[type="text"], button {
    height: 44px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Specifieke velden styling */
select {
    width: 180px;
    padding: 0 10px;
}

input[type="text"] {
    flex-grow: 1;
    min-width: 350px;
    padding: 0 12px;
    border: 1px solid #ccc;
}

button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

button:hover {
    background-color: #0f5bc3;
}

/* Mobielvriendelijk gedrag */
@media (max-width: 640px) {
    form {
        flex-direction: column;
        align-items: stretch;
    }

    select, input[type="text"], button {
        width: 100%;
    }
    #wistjedat {
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    font-style: italic;
    color: #555;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

}
