.psych-test {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.test-header {
    text-align: center;
    margin-bottom: 30px;
}

.age-input-section {
    margin-bottom: 20px;
}

.age-input-section label {
    font-weight: bold;
    margin-right: 10px;
}

.age-input-section input {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.question {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
}

.question-text {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.option:hover {
    background: #f0f0f0;
}

.option input {
    margin-right: 10px;
}

.submit-test {
    background: #007cba;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.submit-test:hover {
    background: #005a87;
}

.results-container {
    margin-top: 30px;
    padding: 20px;
    border: 2px solid #007cba;
    border-radius: 8px;
    background: #f8f9fa;
}

.test-results h4 {
    color: #007cba;
    margin-bottom: 20px;
    text-align: center;
}

.result-item, .disc-result {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    border-left: 4px solid;
}

.result-item.safe, .disc-result.high {
    border-left-color: #28a745;
    background: #d4edda;
}

.result-item.risk, .disc-result.medium {
    border-left-color: #ffc107;
    background: #fff3cd;
}

.result-item.danger, .disc-result.low {
    border-left-color: #dc3545;
    background: #f8d7da;
}

.interpretation {
    font-style: italic;
    margin-top: 10px;
    color: #555;
}

.disc-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}