/* ==========================================================================
   CSS Variables & Design System Tokens
   ========================================================================== */
:root {
    --bg-dark: #09090b;
    --bg-card: rgba(20, 20, 25, 0.65);
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-glass-active: rgba(139, 92, 246, 0.4);
    
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.3);
    --secondary: #6366f1;
    --secondary-glow: rgba(99, 102, 241, 0.3);
    --accent: #ec4899;
    --gradient-hero: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #ec4899 100%);
    --gradient-card-hover: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);

    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #6b7280;
    
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.15);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.15);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base Elements & Layout reset
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* Ambient glow orb background setup */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary);
    animation: orbMove1 20s infinite alternate;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: var(--secondary);
    animation: orbMove2 25s infinite alternate;
}

.orb-3 {
    top: 40%;
    left: 50%;
    width: 35vw;
    height: 35vw;
    background: var(--accent);
    opacity: 0.08;
    animation: orbMove1 30s infinite alternate-reverse;
}

@keyframes orbMove1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 15%) scale(1.1); }
}

@keyframes orbMove2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-15%, -10%) scale(0.9); }
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    background: rgba(9, 9, 11, 0.7);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.logo-icon {
    font-size: 22px;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 10px var(--primary-glow);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

/* ==========================================================================
   Common Layout Components (Cards, Buttons, Forms)
   ========================================================================== */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    min-height: calc(100vh - 80px);
}

.glass-card {
    backdrop-filter: blur(12px);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    padding: 24px;
    transition: var(--transition);
}

/* Button UI styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-hero);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-glass-active);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
}

.btn-danger {
    background: var(--danger);
    color: #ffffff;
}

.btn-danger:hover {
    background: #d32f2f;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.btn-back:hover {
    color: #ffffff;
}

/* Alert Boxes */
.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-info {
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid var(--secondary);
    color: #c7d2fe;
}

.alert-success {
    background: var(--success-bg);
    border: 1px solid var(--success);
    color: #a7f3d0;
}

.alert-danger {
    background: var(--danger-bg);
    border: 1px solid var(--danger);
    color: #fecaca;
}

/* Form Controls */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.2);
}

.read-only-input {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.required {
    color: var(--danger);
}

/* ==========================================================================
   Loader / Spinner Overlay
   ========================================================================== */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 9, 11, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(139, 92, 246, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Routing Views Management
   ========================================================================== */
.app-view {
    display: none;
}

.app-view.active-view {
    display: block;
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   VIEW: Public Home Screen
   ========================================================================== */
.hero-section {
    text-align: center;
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.view-header {
    margin-top: 40px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Events Grid & Cards */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card:hover {
    border-color: var(--border-glass-active);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
    background: var(--gradient-card-hover);
}

.event-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.event-desc-preview {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: var(--primary);
    width: 16px;
}

.event-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.badge-public {
    background: var(--success-bg);
    color: var(--success);
}

.badge-private {
    background: var(--warning-bg);
    color: var(--warning);
}

/* ==========================================================================
   VIEW: Event Details Page
   ========================================================================== */
.event-detail-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
}

@media (max-width: 768px) {
    .event-detail-container {
        grid-template-columns: 1fr;
    }
}

.event-info-card h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.event-full-desc {
    color: var(--text-secondary);
    margin: 24px 0;
    white-space: pre-wrap;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-icon-container {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 18px;
}

.meta-content label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.meta-content p {
    font-size: 14px;
    font-weight: 500;
}

.category-tags {
    margin-top: 24px;
}

.category-tags h4 {
    margin-bottom: 12px;
}

.cat-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-tag {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.cat-tag-name {
    font-weight: 600;
    color: var(--text-primary);
}

.cat-tag-limit {
    color: var(--text-muted);
    margin-left: 4px;
    font-size: 12px;
}

/* ==========================================================================
   VIEW: Ticket Pass Design Layout (Mockup Ticket)
   ========================================================================== */
.ticket-view-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.ticket-outer {
    width: 380px;
    background: linear-gradient(180deg, #1f1f2e 0%, #11111a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* Classic ticket circular punch cutouts */
.ticket-outer::before, .ticket-outer::after {
    content: '';
    position: absolute;
    top: 65%;
    width: 24px;
    height: 24px;
    background: var(--bg-dark);
    border-radius: 50%;
    z-index: 10;
}

.ticket-outer::before {
    left: -12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-outer::after {
    right: -12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-header-band {
    background: var(--gradient-hero);
    padding: 20px;
    text-align: center;
    color: #ffffff;
}

.ticket-header-band h4 {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.ticket-header-band h2 {
    font-size: 22px;
    margin-top: 6px;
}

.ticket-body {
    padding: 24px;
}

.ticket-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.ticket-info-item label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.ticket-info-item p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.ticket-divider {
    border: none;
    border-top: 2px dashed rgba(255, 255, 255, 0.1);
    margin: 16px 0;
    position: relative;
}

.ticket-qr-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.ticket-qr-canvas {
    background: #ffffff;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.ticket-status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ==========================================================================
   VIEW: Dashboards (System and Org Admins)
   ========================================================================== */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 900px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
}

/* Sidebar navigation */
.sidebar {
    padding: 16px;
}

.sidebar-org-info {
    padding: 12px;
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 16px;
}

.sidebar-org-info h4 {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-menu li:hover, .sidebar-menu li.active {
    background: rgba(139, 92, 246, 0.1);
    color: #ffffff;
}

.sidebar-menu li.active {
    border-left: 3px solid var(--primary);
    background: rgba(139, 92, 246, 0.15);
}

.role-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 4px;
}

.badge-admin { background: rgba(139, 92, 246, 0.2); color: #c084fc; }
.badge-supervisor { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.badge-gatekeeper { background: rgba(236, 72, 153, 0.2); color: #f472b6; }

.dashboard-main-content {
    min-height: 500px;
}

.org-tab-panel {
    display: none;
}

.org-tab-panel.active-panel {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
    }
}

/* Data Table Styling */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    text-align: left;
}

.data-table th, .data-table td {
    padding: 14px 16px;
    font-size: 14px;
}

.data-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #ffffff;
    border-bottom: 2px solid var(--border-glass);
}

.data-table td {
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: #ffffff;
}

.text-right {
    text-align: right;
}

.actions-cell {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

/* ==========================================================================
   Modal Dialog Layouts
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 11, 0.85);
    z-index: 1000;
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal.active-modal {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 16px;
    margin-top: 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.form-section-divider {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-top: 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    padding-bottom: 6px;
}

.form-section-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.dyn-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 40px;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-sm);
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--danger);
    color: #ffffff;
}

/* ==========================================================================
   Entry Verification / QR Scanner Panel Elements
   ========================================================================== */
.verify-card {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
}

.verify-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.verify-success { color: var(--success); }
.verify-warning { color: var(--warning); }
.verify-danger { color: var(--danger); }

.verify-details {
    text-align: left;
    margin: 20px 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.verify-details-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-details-row:last-child {
    border-bottom: none;
}

.verify-details-row label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.verify-details-row span {
    font-size: 14px;
    font-weight: 500;
}

.scanner-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.scanner-actions {
    display: flex;
    gap: 16px;
}

.qr-camera-element {
    width: 100%;
    max-width: 480px;
    background: #000;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.manual-checkin {
    width: 100%;
    max-width: 400px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    margin-top: 10px;
}

.input-group {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* ==========================================================================
   Print Styles Overrides
   ========================================================================== */
@media print {
    body {
        background: #ffffff;
        color: #000000;
    }
    
    .navbar, .glow-bg, .ticket-actions, .btn-back {
        display: none !important;
    }
    
    .main-content {
        padding: 0;
    }
    
    .ticket-outer {
        box-shadow: none;
        border: 1px solid #000000;
        background: #ffffff;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        color: #000000;
    }
    
    .ticket-header-band {
        background: #f0f0f0;
        color: #000000;
        border-bottom: 1px solid #000000;
    }
    
    .ticket-outer::before, .ticket-outer::after {
        background: #ffffff !important;
        border: 1px solid #000000 !important;
    }
    
    .ticket-info-item p {
        color: #000000;
    }
    
    .ticket-qr-canvas {
        border: 1px solid #000000;
    }
}
