body {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: left;
    margin-top: 2rem;
}

pre {
    background-color: #f5f5f5;
    padding: 1rem;
    border-radius: 5px;
    text-align: left;
    overflow-x: auto;
    font-family: monospace;
    margin: 1.5rem 0;
}

code {
    font-family: monospace;
}

/* Sidebar minimal style since external CSS is removed */
.sidebar {
    position: fixed;
    top: 1rem;
    left: 1rem;
    font-size: 0.9rem;
}

.sidebar a {
    text-decoration: none;
    color: #666;
}

.sidebar a:hover {
    color: #000;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .sidebar {
        position: static;
        margin-bottom: 1rem;
    }

    body {
        padding: 1rem;
    }
}

/* Bonus specific styles */
.bonus-message-container {
    margin-bottom: 1.5rem;
}

.chat-label {
    font-weight: bold;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 0.2rem;
}

.bonus-role {
    font-weight: bold;
    color: #2c3e50;
}

hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid #eee;
}