/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.6);
}
::-webkit-scrollbar-thumb {
    background: rgba(51, 65, 85, 0.8);
    border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.8);
}

/* Drag over highlights */
#dropZone.dragover {
    border-color: #6366f1 !important;
    background-color: rgba(99, 102, 241, 0.15) !important;
    transform: scale(1.01);
}

/* Toast animation */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(1rem) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.animate-toast {
    animation: toastIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* SVG QR alignment */
#qrImageContainer svg {
    width: 100% !important;
    height: 100% !important;
    display: block;
}
