@media print {
    /* Hide everything by default */
    body * {
        visibility: hidden;
    }

    /* Show only the modal content */
    #resultModal, #resultModal * {
        visibility: visible;
    }

    /* Position the modal content */
    #resultModal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        background: white !important;
    }

    .modal-dialog {
        max-width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .modal-content {
        border: none;
        box-shadow: none;
    }

    .modal-header .btn-close {
        display: none;
    }

    /* Hide buttons in print view */
    .no-print {
        display: none !important;
    }

    /* Typography adjustments */
    body {
        font-family: 'Inter', sans-serif;
        color: #000;
        background: white;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    /* Ensure tables look good */
    .table {
        width: 100% !important;
        border-collapse: collapse !important;
    }
    
    .table td, .table th {
        background-color: #fff !important;
        border: 1px solid #ddd !important;
    }

    /* Add a footer */
    .modal-body::after {
        content: "Generated by SEO Platform - " attr(data-date);
        display: block;
        text-align: center;
        margin-top: 2rem;
        font-size: 0.8rem;
        color: #666;
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
}
