body {
    background-color: lightblue;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}
#container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    color: darkblue;
    font-weight: bold;
    font-size: 2.5em;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}
.warning {
    color: red;
    font-weight: bold;
}
.term {
    color: blue;
    font-weight: bold;
}
#description, #definitions {
    margin-bottom: 30px;
    line-height: 1.6;
}
#quiz {
    margin-bottom: 30px;
}
#progress-container {
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
}
#progress-bar {
    height: 20px;
    background-color: darkblue;
    width: 0%;
    border-radius: 5px;
    transition: width 0.3s;
}
#question {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.option {
    display: block;
    margin-bottom: 15px;
    font-size: 1.1em;
}
input[type="radio"] {
    transform: scale(1.5);
    margin-right: 10px;
}
button {
    background-color: darkblue;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}
button:hover {
    background-color: #00008b;
}
button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
#results {
    display: none;
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}
#disq-list {
    margin-top: 20px;
}
#disq-list ul {
    list-style-type: disc;
    padding-left: 20px;
}
.disclaimer {
    color: red;
    font-style: italic;
    margin-top: 10px;
}