/* css/notebook.css - UPDATED VERSION (Fixing CSS conflict) */
#paper-container {
    /* FIX: Removed 'width: 100%;' and 'height: 100%;' which conflicted 
       with the fixed dimensions set in style.css and renderer.js. */
    position: relative;
    
    background-color: #fdfdfd;
    background-image: 
        /* Red Margin at 80px */
        linear-gradient(to left, transparent 80px, #ffb6b6 81px, #ffb6b6 82px, transparent 83px),
        /* Blue Lines */
        repeating-linear-gradient(transparent, transparent 29px, #dcecf7 30px);
}