body {
    font-family: 'Inter', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

#quote-paper {
    width: 210mm;
    min-height: 297mm;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 120px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    user-select: none;
    z-index: 1;
}

#quote-content {
    position: relative;
    z-index: 2;
}

@media print {
    body * {
        visibility: hidden;
    }
    #quote-paper, #quote-paper * {
        visibility: visible;
    }
    #quote-paper {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        box-shadow: none;
        margin: 0;
    }
    .no-print {
        display: none !important;
    }
}