/* ===============================================
PRINT
================================================== */
@media print
{
    /* 
    CONFIG VALUES
    ================================================== */
    :root
    {
        --fs:                     1.5rem;

        --size-x1:                2.8rem;
    }
    

    /* 
    STYLE SETTING
    ================================================== */
    html, body
    {
        /* SORUN 1: height: 100vh kaldırıldı - bu 2. sayfaya neden oluyordu */
        height: auto !important;
        min-height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        /* SORUN 2: page-break-after kaldırıldı */
        overflow: hidden !important; /* Taşmayı engelle */
    }

    *
    {
        color-adjust: exact; -webkit-print-color-adjust: exact; print-color-adjust: exact;
    }

    .body-root
    {
        min-height: auto;
    }

    section.section-main.section-property-print
    {
        display: block;
        
        margin: 10mm 0mm 0mm 0mm !important;
        padding: 0rem 0rem !important;
    }
    
    .container
    {
        width: 100% !important;
        max-width: 94%;
    }
    
    .pagebreak
    {
        clear: both;
        page-break-after: always;
    }
    

    /* 
    PAGE SETTING
    ================================================== */
    @page
    {
        margin: 0mm !important;
    }
}


/* Safari için özel stiller */
@supports (-webkit-touch-callout: none)
{
    @media print
    {
        .container
        {
            max-width: 90%;
        }
    }
}