.qrcode-container {
    border: 2px solid var(--ut-color-border);
    border-radius: var(--ut-radius-md);
    padding: 24px;
    background: var(--ut-color-surface);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode-container svg {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.download-options {
    margin-top: 20px;
    padding: 20px;
    background: var(--ut-gradient-muted);
    border-radius: var(--ut-radius-md);
    border: 2px solid var(--ut-color-border);
}

.download-options h6 {
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
}

.d-none {
    display: none !important;
}

@media (max-width: 768px) {
    .qrcode-container {
        min-height: 250px;
        padding: 16px;
    }

    .download-options {
        padding: 16px;
    }
}
