
    
body { 
	font-family: 'Segoe UI', sans-serif; 
	background-color: #aa33ff;
}	

#downloadBtn { 
	background: #e74c3c;
	margin-top: 10px; 
}
#printHeader { 
    display: none; 
}

@media print {
    /* Hide everything else except the header and the wall */
    body * { visibility: hidden; }
    #printHeader, #printHeader *, #wallCanvas { visibility: visible; }
    
    #printHeader { 
        display: block !important; 
        position: absolute; 
        top: 0; 
        left: 0; 
        width: 100%;
        border-bottom: 2px solid #000;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    #printTitle { font-size: 24pt; margin-bottom: 10px; }
    
    .print-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        font-size: 12pt;
    }

    #wallCanvas { 
        position: absolute; 
        top: 180px; /* Moves the wall down to make room for the header data */
        left: 0;
        border: 1px solid #000;
    }
}
