/* Algemene styling */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #141E30, #243B55);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Quiz container */
.quiz-container, .result-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    margin: auto;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in-out;
}

/* Vragen styling */
.question {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
}

/* Antwoord opties */
.option {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover effect */
.option:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Geselecteerde optie */
.selected {
    background: #4CAF50 !important;
    color: white;
    font-weight: bold;
    transform: scale(1.05);
}

/* Knoppen */
button {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #e6b800;
    transform: scale(1.05);
}

/* Resultaat container */
.result-container {
    display: none;
    animation: slideIn 1s ease-in-out;
}

/* Animaties */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Algemene styling */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #141E30, #243B55);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Algemene Info Box */
.info-box {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    margin: 20px auto;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.4);
    animation: fadeIn 1s ease-in-out;
}

.info-box h2 {
    color: #ffcc00;
}

.info-box p {
    margin-bottom: 20px;
}

/* Tips Box */
.tips-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.4);
    animation: fadeIn 1s ease-in-out;
}

.tips-box ul {
    text-align: left;
    list-style-type: disc;
}

.tips-box li {
    margin: 10px 0;
}

/* Quiz container */
.quiz-container, .result-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    margin: auto;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-in-out;
}

/* Animatie voor fadeIn */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
