body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}

h1 {
    color: #2c3e50;
    text-align: center;
}

.disclaimer {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 0.9em;
}

#shadowSurvey {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.question {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.question p {
    font-weight: bold;
    margin-bottom: 10px;
    color: #34495e;
}

.question label {
    display: block; /* Makes each radio button appear on a new line */
    margin-bottom: 8px;
    cursor: pointer;
}

.question input[type="radio"] {
    margin-right: 8px;
}

button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

.results-container {
    margin-top: 30px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 5px solid #3498db;
}

.results-container h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

#results-content p {
    margin-bottom: 15px;
}

#results-content strong {
    color: #2980b9;
}

/* Optional: Add some space below the last question before the button */
#shadowSurvey .question:last-of-type {
    border-bottom: none;
}