:root {
    --primary-font: 'Plus Jakarta Sans', sans-serif;
    --accent-pink: #ec4899;
}

body { 
    font-family: var(--primary-font); 
}

.arabic { 
    font-family: 'Amiri', serif; 
    font-size: 1.35rem; 
}

.quiz-img-container img {
    max-height: 280px !important;
    width: auto !important;
    object-fit: contain !important;
    margin-left: auto;
    margin-right: auto;
}

@media all and (display-mode: standalone) {
    body {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* PRINT LAYOUT CUSTOMIZATION */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    .no-print {
        display: none !important;
    }
    .print-only {
        display: block !important;
    }
    .print-page-break {
        page-break-after: always;
    }
    @page {
        size: A4;
        margin: 1.5cm;
    }
}
