.adhd-form-wrapper {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    font-family: sans-serif;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h3 {
    text-align: center;
    margin-bottom: 20px;
}

.progress-bar {
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress {
    height: 100%;
    width: 0;
    background: #0073aa;
    transition: width 0.3s ease;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

label {
    display: block;
    margin: 10px 0;
}

button {
    background-color: #0073aa;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    margin-right: 10px;
}

button:hover {
    background-color: #005c8c;
}

#result {
    margin-top: 30px;
    font-weight: bold;
    text-align: center;
}

fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
}

legend {
    font-weight: bold;
    margin-bottom: 15px;
}

.error-message {
    color: #dc3545;
    margin-top: 10px;
    display: none;
}

.result-section {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    display: none;
}

/* Accessibility improvements */
input[type="radio"]:focus + label {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .adhd-form-wrapper {
        padding: 15px;
    }
    
    button {
        width: 100%;
        margin: 10px 0;
    }
}

/* Add these styles for admin page */
.question-row {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
}

.question-row label {
    display: inline-block;
    width: 100px;
    font-weight: bold;
}

.question-row .remove-question {
    margin-left: 10px;
    color: #dc3545;
}

#add-question {
    margin: 20px 0;
}
