<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.simulator-container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.scenario {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #e7f3fe;
    border-radius: 5px;
}
.options {
    display: flex;
    flex-direction: column;
}
.options button {
    margin: 5px 0;
    padding: 10px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.options button:hover {
    background-color: #2980b9;
}
#consequence {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9e79f;
    border-radius: 5px;
    display: none;
}
#next-scenario {
    display: none;
    margin-top: 20px;
}</pre></body></html>