/* --- Project Front Page Pro Styles --- */

.project-form-container {
    height: 95vh;
    overflow-y: auto;
}

.preview-wrapper {
    height: 95vh; /* सिर्फ स्क्रीन पर स्क्रॉल करने के लिए */
}

.project-a4-page {
    /* 100% फिक्स A4 साइज़, यह कभी पिचकेगा नहीं */
    min-width: 210mm !important;
    max-width: 210mm !important;
    height: 297mm !important; 
    
    background: white;
    padding: 15mm; 
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif; 
}

/* शानदार डबल लाइन बॉर्डर */
.project-border {
    border: 8px double #000;
    height: 100%; /* बॉर्डर पेज के अंत तक जाएगा */
    border-radius: 5px;
}

.school-name { font-size: 38px; line-height: 1.2; }
.topic-text { font-size: 32px; line-height: 1.4; }
.font-serif { font-family: 'Times New Roman', Times, serif; }
.italic-text { font-style: italic; }

.submitted-box { width: 45%; }

/* Print Settings - सिर्फ A4 प्रिंट होगा, बाकी सब गायब */
@media print {
    @page {
        size: A4 portrait;
        margin: 0;
    }
    
    body, html {
        margin: 0;
        padding: 0;
        background: white !important;
    }
    
    .d-print-none, .project-form-container { display: none !important; }
    
    .preview-wrapper {
        display: block !important;
        padding: 0 !important;
        height: max-content !important;
        background: white !important;
        overflow: visible !important;
    }
    
    .project-a4-page {
        margin: 0 !important;
        padding: 15mm !important;
        box-shadow: none !important;
        width: 210mm !important;
        height: 297mm !important;
        page-break-after: avoid;
        page-break-inside: avoid;
    }
}