        * { font-family: 'Inter', sans-serif; }
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
        
        /* Make template slider scrollable on all devices */
        .template-slider {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 #f1f5f9;
        }
        
        .template-slider::-webkit-scrollbar {
            height: 4px;
        }
        
        .template-slider::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 20px;
        }
        
        .template-slider::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 20px;
        }
        
        .template-slider::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }
        
        /* Better PDF printing */
        @media print {
            body * { visibility: hidden; }
            #cv-preview, #cv-preview * { 
                visibility: visible; 
                -webkit-print-color-adjust: exact !important;
                print-color-adjust: exact !important;
                color-adjust: exact !important;
            }
            #cv-preview { 
                position: fixed; 
                left: 0; 
                top: 0; 
                width: 210mm; 
                height: 297mm; 
                transform: scale(1) !important; 
                margin: 0 !important;
            }
            .no-print { display: none !important; }
            @page { 
                size: A4; 
                margin: 0;
            }
        }