/* Quick QR Custom Styling */

:root {
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --dark-color: #1e293b;
    --light-bg: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    background-color: var(--light-bg);
    color: var(--dark-color);
}

.italic {
    font-style: italic;
}

.ls-1 {
    letter-spacing: 0.05rem;
}

.uppercase {
    text-transform: uppercase;
}

/* Transitions */
.nav-link,
.btn,
.card {
    transition: all 0.3s ease;
}

/* Glassmorphism Cards */
.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Table Customization */
.table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #64748b;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Table & Dropdown Fixes */
.table-responsive {
    overflow: visible !important;
}

@media (max-width: 991.98px) {
    .table-responsive {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

.dropdown-menu {
    z-index: 1050 !important;
}