/* Qurlin Design System */
/* Using a combination of Tailwind utilities and custom glassmorphism effects */

/* Glassmorphism utility for modern UI feel */
.glass-morphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark mode adjustments for glassmorphism */
.dark .glass-morphism {
    background: rgba(11, 11, 20, 0.7);
}

/* QR Code styling to ensure visibility and branding */
#qrcode img {
    margin: 0 auto;
    border-radius: 12px;
    padding: 12px;
    background: white; /* Always white background for QR readability */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Custom Scrollbar for a premium look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #040440;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1212bb;
}

/* Responsive adjustments for mobile devices */
@media (max-width: 640px) {
    .toast-notification {
        width: 90%;
        left: 5%;
        transform: none;
    }
}