/* QR Code Print Styles - Shared by Room and Inventory QR pages */

/* Print-specific styles */
@media print {
    /* Hide everything except print layout */
    body * {
        visibility: hidden;
    }

    #print-layout, #print-layout * {
        visibility: visible;
    }

    #print-layout {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

/* Hide print layout on screen */
.print-only {
    display: none;
}

@media print {
    .print-only {
        display: block;
    }

    .print-page {
        page-break-after: always;
        width: 8.5in;
        height: 11in;
        padding: 0.5in;
    }

    .print-page:last-child {
        page-break-after: auto;
    }

    .print-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 0.25in;
        height: 100%;
    }

    .print-qr-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2px solid #ddd;
        border-radius: 8px;
        padding: 0.25in;
        text-align: center;
    }

    .print-qr-code {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    /* Room-specific print labels */
    .print-room-name {
        font-size: 18pt;
        font-weight: bold;
        margin-bottom: 4pt;
        color: #000;
    }

    .print-room-number {
        font-size: 12pt;
        margin-bottom: 4pt;
        color: #333;
    }

    /* Inventory-specific print labels */
    .print-item-name {
        font-size: 18pt;
        font-weight: bold;
        margin-bottom: 4pt;
        color: #000;
    }

    .print-item-sku {
        font-size: 12pt;
        margin-bottom: 4pt;
        color: #333;
    }

    .print-stock {
        font-size: 10pt;
        margin-bottom: 8pt;
        color: #666;
    }

    /* Shared location/details label */
    .print-location {
        font-size: 10pt;
        margin-bottom: 8pt;
        color: #666;
    }
}
