* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #003399 0%, #0056cc 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.header-content {
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    align-items: center;
    gap: 1rem;
}

.title-section {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
}

.language-switcher {
    min-width: 120px;
    grid-column: 3;
    justify-self: end;
}

.language-switcher select {
    background: rgba(255, 255, 255, 0.8);
    color: #2d3748;
    border: 1px solid #cbd5e0;
    padding: 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.language-switcher select option {
    background: white;
    color: #2d3748;
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .header-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-section {
        order: 1;
        text-align: center;
    }
    
    .language-switcher {
        order: 2;
        align-self: center;
    }
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Logo Styles */
.logo {
    height: 4rem;
    width: auto;
    margin-bottom: 0.5rem;
}

.logo-header {
    height: 3.5rem;
    width: auto;
}

.logo-main {
    height: 5rem;
    width: auto;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .logo {
        height: 3rem;
    }
    
    .logo-header {
        height: 2.5rem;
    }
    
    .logo-main {
        height: 4rem;
    }
}

/* Always show complete logo, hide symbol */
.logo-symbol {
    display: none;
}

.logo-complete {
    display: inline-block;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.card h2 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.card h3 {
    color: #4a5568;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.features {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #FFCC00;
}

.features ul {
    margin-left: 1.5rem;
    color: #4a5568;
}

.features li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 2rem;
    align-items: end;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-row .form-group:first-child {
    min-width: 200px;
}

/* Session configuration box */
.session-config-box {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.quota-group {
    display: flex;
    align-items: end;
}

.quota-group .quota-info {
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.quota-group .quota-info strong {
    color: #4a5568;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
        align-items: center;
        text-align: center;
    }
    
    .form-row .form-group {
        margin-bottom: 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .form-row .form-group:last-child {
        margin-bottom: 0;
    }
    
    .session-config-box {
        padding: 1rem;
        text-align: center;
    }
    
    .quota-group {
        justify-content: center;
    }
    
    .quota-group .quota-info {
        min-height: auto;
        margin-top: 0.5rem;
        text-align: center;
        justify-content: center;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #4a5568;
}

input[type="text"],
input[type="file"],
select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: white;
}

input[type="text"]:focus,
input[type="file"]:focus,
select:focus {
    outline: none;
    border-color: #003399;
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.1);
}

/* Drop Zone Styles */
.drop-zone {
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-zone:hover {
    border-color: #a0aec0;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    transform: translateY(-2px);
}

.drop-zone.drag-over {
    border-color: #003399;
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.05) 0%, rgba(0, 86, 204, 0.05) 100%);
    box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.1);
}

.drop-zone-content {
    pointer-events: none;
}

.drop-zone-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.drop-zone-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.drop-zone-subtext {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Selected Files List */
.selected-files-container {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.selected-files-container h4 {
    margin: 0 0 1rem 0;
    color: #4a5568;
    font-size: 1rem;
}

.selected-files-list {
    margin-bottom: 1rem;
}

.selected-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.9rem;
}

.selected-file-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-file-name {
    font-weight: 500;
    color: #2d3748;
}

.selected-file-size {
    color: #718096;
    font-size: 0.8rem;
}

.remove-file-btn {
    background: #fed7d7;
    color: #c53030;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.remove-file-btn:hover {
    background: #feb2b2;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, #003399 0%, #0056cc 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 51, 153, 0.4);
}

.btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover:not(:disabled) {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.btn-danger {
    background: #e53e3e;
    color: white;
    border: 2px solid #e53e3e;
}

.btn-danger:hover:not(:disabled) {
    background: #c53030;
    border-color: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.link-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #FFCC00;
}

/* Upload link section with green border */
.link-section.upload-link {
    border: 2px solid #38a169;
    background: #f0fff4;
}

/* Download link section with red border */
.link-section.download-link {
    border: 2px solid #e53e3e;
    background: #fff5f5;
}

.link-container {
    margin: 1rem 0 0.5rem 0;
}

.link-container input {
    width: 100%;
    font-family: monospace;
    font-size: 0.9rem;
    background: white;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    outline: none;
}

.button-container {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem 0;
    flex-wrap: wrap;
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    border-radius: 12px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: #f7fafc;
}

.modal-header h3 {
    margin: 0;
    color: #2d3748;
}

.close {
    color: #718096;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close:hover {
    color: #2d3748;
    background: #e2e8f0;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

#qr-code-container {
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

#qr-modal-description {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

/* QR Scanner Modal */
.scanner-modal {
    max-width: 500px;
}

#scanner-container {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

/* QR Scanner Video and Canvas styling */
.qr-scanner-video {
    width: 100%;
    height: auto;
    max-width: 400px;
    max-height: 300px;
    border-radius: 8px;
    background: #000;
}

.qr-scanner-canvas {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.hidden {
    display: none !important;
}

.scanner-status {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
}

.scanner-status p {
    margin: 0;
    font-size: 0.9rem;
}

.scanner-error {
    background: #fed7d7;
    color: #c53030;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border: 1px solid #feb2b2;
}

.scanner-error p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.scanner-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.scanner-controls button {
    min-width: 120px;
}

/* Action buttons layout */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.action-buttons .btn {
    flex: 1;
    min-width: 140px;
}

@media (max-width: 480px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .scanner-controls {
        flex-direction: column;
    }
    
    .scanner-controls button {
        min-width: auto;
        width: 100%;
    }
}

/* Download section in upload results */
.download-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.download-section h4 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
    font-size: 1.1rem;
}

.download-section p {
    margin: 0 0 1rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.download-section .warning {
    margin: 1rem 0 0 0;
    font-size: 0.85rem;
    color: #d69e2e;
    font-weight: 500;
}

.button-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.button-container .btn {
    flex: 1;
    min-width: 100px;
}

@media (max-width: 480px) {
    .button-container {
        flex-direction: column;
    }
    
    .button-container .btn {
        width: 100%;
        min-width: auto;
    }
}

/* Print styles */
@media print {
    * {
        box-sizing: border-box;
    }
    
    body * {
        visibility: hidden;
    }
    
    .print-content, .print-content * {
        visibility: visible;
    }
    
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .print-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        padding: 10mm;
        font-family: Arial, sans-serif;
        font-size: 12px;
        line-height: 1.4;
        overflow: hidden;
        page-break-after: avoid;
    }
    
    .print-header {
        text-align: center;
        margin-bottom: 8mm;
        border-bottom: 2px solid #000;
        padding-bottom: 4mm;
    }
    
    .print-header h1 {
        margin: 0;
        font-size: 22px;
        color: #000;
    }
    
    .print-header h2 {
        margin: 2mm 0 0 0;
        font-size: 16px;
        color: #666;
    }
    
    .print-qr-section {
        text-align: center;
        margin: 6mm 0;
    }
    
    .print-qr-section h3 {
        margin: 0 0 4mm 0;
        font-size: 14px;
    }
    
    .print-qr-container {
        margin: 4mm auto;
        width: 200px;
        height: 200px;
        text-align: center;
    }
    
    .print-link {
        font-family: monospace;
        font-size: 11px;
        word-break: break-all;
        margin: 4mm 0;
        padding: 3mm;
        border: 1px solid #ccc;
        background: #f9f9f9;
    }
    
    .print-instructions {
        margin-top: 6mm;
        font-size: 12px;
        color: #666;
        border-top: 1px solid #ccc;
        padding-top: 4mm;
    }
    
    .print-instructions p {
        margin: 0 0 2mm 0;
    }
    
    .print-instructions ul {
        margin: 2mm 0 0 0;
        padding-left: 6mm;
    }
    
    .print-instructions li {
        margin: 1.5mm 0;
    }
    
    .print-footer {
        margin-top: 4mm;
        text-align: center;
        font-size: 10px;
        color: #999;
    }
}

.warning {
    font-size: 0.9rem;
    color: #e53e3e;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #fed7d7;
    border-radius: 4px;
    border-left: 4px solid #e53e3e;
}

.session-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #edf2f7;
    border-radius: 8px;
    text-align: center;
}

.status-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.status-message.success {
    background: #c6f6d5;
    color: #22543d;
    border-left: 4px solid #38a169;
}

.status-message.error {
    background: #fed7d7;
    color: #822727;
    border-left: 4px solid #e53e3e;
}

.info-card {
    background: #f0fff4;
    border-left: 4px solid #38a169;
}

.info-card h3 {
    color: #22543d;
}

.info-card ul {
    margin-left: 1.5rem;
    color: #2f855a;
}

.info-card li {
    margin-bottom: 0.5rem;
}

/* Add spacing between quota box and upload form */
#upload-form {
    margin-top: 2rem;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #4a5568;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #fafafa;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.file-meta {
    font-size: 0.9rem;
    color: #718096;
}

.file-size {
    margin-right: 1rem;
}

.progress-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #FFCC00;
}

.progress-file {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.filename {
    font-weight: 600;
    color: #2d3748;
}

.filesize {
    color: #718096;
    font-size: 0.9rem;
}

.status {
    font-weight: 500;
}

.status.success {
    color: #22543d;
}

.status.error {
    color: #822727;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #003399 0%, #0056cc 100%);
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Animated progress fill for long-running operations */
.progress-fill.animating {
    background: linear-gradient(90deg, 
        #003399 0%, 
        #0066ff 20%, 
        #00ccff 40%, 
        #0066ff 60%, 
        #003399 80%, 
        #001166 100%);
    background-size: 300% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -300% 0; }
    100% { background-position: 300% 0; }
}

/* Pulsing animation for processing status */
.status.processing {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.upload-summary {
    background: #edf2f7;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
}

.results-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-item {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-item.success {
    background: #c6f6d5;
    color: #22543d;
}

.result-item.error {
    background: #fed7d7;
    color: #822727;
}

.error-message {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#delete-confirmation {
    background: #fed7d7;
    border: 2px solid #e53e3e;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

#delete-confirmation h3 {
    color: #822727;
    margin-bottom: 1rem;
}

#delete-confirmation p {
    color: #822727;
    margin-bottom: 0.75rem;
}

#delete-result {
    background: #c6f6d5;
    border: 2px solid #38a169;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    text-align: center;
}

#delete-result h3 {
    color: #22543d;
    margin-bottom: 1rem;
}

#delete-result p {
    color: #2f855a;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .link-container {
        flex-direction: column;
    }
    
    .file-item {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .progress-file {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

/* Utility classes to replace inline styles */
.hidden {
    display: none !important;
}

.progress-fill {
    width: 0%;
    transition: width 0.3s ease-in-out;
}

/* Data attribute based progress widths - cover 0-100 in steps of 5 */
.progress-fill[data-width="0"] { width: 0%; }
.progress-fill[data-width="2"] { width: 2%; }
.progress-fill[data-width="5"] { width: 5%; }
.progress-fill[data-width="10"] { width: 10%; }
.progress-fill[data-width="15"] { width: 15%; }
.progress-fill[data-width="20"] { width: 20%; }
.progress-fill[data-width="25"] { width: 25%; }
.progress-fill[data-width="30"] { width: 30%; }
.progress-fill[data-width="35"] { width: 35%; }
.progress-fill[data-width="40"] { width: 40%; }
.progress-fill[data-width="45"] { width: 45%; }
.progress-fill[data-width="50"] { width: 50%; }
.progress-fill[data-width="55"] { width: 55%; }
.progress-fill[data-width="60"] { width: 60%; }
.progress-fill[data-width="65"] { width: 65%; }
.progress-fill[data-width="70"] { width: 70%; }
.progress-fill[data-width="75"] { width: 75%; }
.progress-fill[data-width="80"] { width: 80%; }
.progress-fill[data-width="85"] { width: 85%; }
.progress-fill[data-width="90"] { width: 90%; }
.progress-fill[data-width="95"] { width: 95%; }
.progress-fill[data-width="100"] { width: 100%; }


.progress-fill.warning { background: #ed8936; }
.progress-fill.danger { background: #e53e3e; }

.quota-info {
    padding: 0.75rem;
    background: #f7fafc;
    border-radius: 8px;
    color: #4a5568;
}

/* Template inline style replacements */
.progress-bar-spaced {
    margin-top: 0.5rem;
}

.quota-remaining-text {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    color: #666;
}

.action-buttons-spaced {
    margin-top: 1rem;
}

.list-spaced {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.instructions-list {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

/* Status and progress styles */
.status-text {
    font-size: 0.9rem;
    color: #4a5568;
    display: block;
    margin-bottom: 0.25rem;
}

.progress-container {
    margin-top: 0.5rem;
}

.progress-bar-small {
    height: 6px;
}

/* Print styles */
.print-container {
    text-align: center;
    padding: 20px;
}

.print-qr-container {
    margin: 20px auto;
    display: inline-block;
}

.print-url {
    font-size: 12px;
    word-break: break-all;
    margin: 20px 0;
}

/* QR Code containers */
#qr-code-container,
.print-qr-container {
    width: 256px;
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code-svg {
    width: 100%;
    height: 100%;
    max-width: 256px;
    max-height: 256px;
}