/* Print media styles */
@media print {
    body {
        font-family: Arial, sans-serif;
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: none;
        margin: 0;
        padding: 0;
    }

    /* Hide unnecessary elements */
    nav, .sidebar, .footer, .ads, .no-print {
        display: none;
    }

    /* Page margins */
    @page {
        margin: 1cm;
    }

    /* Custom header and footer content */
    header, footer {
        display: none;
    }

    /* Page breaks for sections */
    h1, h2, h3, h4, h5, h6, .section {
        page-break-after: avoid;
        page-break-inside: avoid;
    }

    /* Table styling */
    table {
        width: 100%;
        border-collapse: collapse;
        page-break-inside: avoid;
    }

    th, td {
        padding: 8px;
        border: 1px solid #000;
    }

    /* Ensure images fit within page */
    img {
        max-width: 100%;
        height: auto;
        page-break-inside: avoid;
    }

    /* Styling for specific sections */
    .personal-info, .contact-details, .educational-details, .declaration, .guardian-info, .other-details {
        margin-bottom: 20px;
    }

    .header, .footer {
        width: 100%;
        text-align: center;
        position: fixed;
    }

    .header {
        top: 0;
    }

    .footer {
        bottom: 0;
    }

    /* Specific header and footer content */
    .header::after {
        content: "Gogate Jogalekar College Admission Form";
    }

    .footer::after {
        content: "Page " counter(page) " of " counter(pages);
    }
}
 .fyFinalFormPreview .card-body {
    padding: 0.50rem !important ;
}
.fyFinalFormPreview .card {
    display: block  !important ;
}
.xiFinalFormPreview .card {
    display: block  !important ;
}
/*@media print {*/
/*  body {*/
/*    display: none !important;*/
/*  }*/
/*}*/