/* -------------------------------------------------------------------------- */
/*                            Custom Styles                                   */
/* -------------------------------------------------------------------------- */
.qr-box {
    width: 182px;
    height: 187px;
    border: 1px solid #ddd;
    display: inline-block;
    text-align: center;
    position: relative;
}
.qr-box > #qr-code {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.qr-box .qr-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 8px;
    display: none;
}
.qr-box .qr-show-scan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 42% 10%;
    border-radius: 8px;
    width: 99%;
    height: 99%;
    display: block;
}
/* Success Animation */
.success-animation {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease-out;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}
