/* Note Page Specific Styles */
@import url('../base.css');

.note-content {
    padding-top: 60px;
    padding-bottom: 80px;
    max-width: 800px; /* Optimal for reading */
}

.note-content h2 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-top: 2em;
    margin-bottom: 1em;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.note-content p, .note-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1em;
}

.note-content ul, .note-content ol {
    padding-left: 40px;
    margin-bottom: 1.5em;
}

.note-content ul li::marker {
    color: var(--primary-color);
    font-weight: bold;
}

/* For code blocks */
.note-content pre {
    background-color: #2d2d2d;
    color: #f8f8f2;
    padding: 20px;
    border-radius: var(--border-radius);
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    margin: 2em 0;
}