﻿#scan-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

#scan-overlay.active {
    display: flex;
}

.scan-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.scan-status {
    font-size: 1.25rem;
    color: #1f2937;
    font-weight: 500;
    max-width: 80%;
    line-height: 1.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scan-logo {
        animation: none !important;
    }
}