/* --- START OF FILE css/preview.css --- */
#previewCanvas {
    border: 1px solid #ccc;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 5px; /* Reduced bottom margin */
    background-image:
            linear-gradient(45deg, #eee 25%, transparent 25%),
            linear-gradient(-45deg, #eee 25%, transparent 25%),
            linear-gradient(45deg, transparent 75%, #eee 75%),
            linear-gradient(-45deg, transparent 75%, #eee 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Info text specifically for the preview canvas */
#previewCanvas + .info { /* Selects the .info immediately following the canvas */
    margin-top: 0;
    margin-bottom: 15px;
}
/* --- END OF FILE css/preview.css --- */