/* Basic body and container styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
    color: darkslategrey;
    background: whitesmoke;
}

h1 {
    color: steelblue;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: dodgerblue;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: steelblue;
    text-decoration: underline;
}

.console-note {
    background: aliceblue;
    border-left: 4px solid dodgerblue;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: dimgray;
}