@media print {
    body * {
        visibility: hidden;
    }

    .brandprot-print-view,
    .brandprot-print-view * {
        visibility: visible;
    }

    .brandprot-print-view {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .no-print {
        display: none !important;
    }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #fff;
}

.brandprot-tags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brandprot-tag {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    page-break-inside: avoid;
    border-radius: 10px;
}

.brandprot-tag h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.brandprot-code {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 10px 0;
    font-family: monospace;
    background: #f0f0f1;
    padding: 5px 10px;
    display: inline-block;
}

.brandprot-qr {
    margin: 15px auto;
    width: 128px;
    height: 128px;
}

.brandprot-verify-link {
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.brandprot-product {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.print-controls {
    margin-bottom: 20px;
    text-align: center;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}

.button {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
}

.button:hover {
    background: #005177;
}