.dashboard-scope .db-tickets-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
}

.dashboard-scope .db-ticket-item {
    background: var(--db-card-bg);
    border: 1px solid var(--db-border);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    transition: transform 0.3s;
}

.dashboard-scope .db-ticket-item:hover {
    border-color: var(--db-red);
}

.dashboard-scope .db-ticket-left {
    flex: 1;
    padding: 30px;
    border-right: 2px dashed var(--db-border);
    position: relative;
}

/* Les petits cercles pour l'effet "ticket découpé" */
.dashboard-scope .db-ticket-left::after,
.dashboard-scope .db-ticket-left::before {
    content: '';
    position: absolute;
    right: -10px;
    width: 20px;
    height: 20px;
    background: var(--db-black);
    border-radius: 50%;
}
.dashboard-scope .db-ticket-left::before { top: -10px; }
.dashboard-scope .db-ticket-left::after { bottom: -10px; }

.dashboard-scope .db-ticket-id {
    color: var(--db-red);
    font-weight: bold;
    font-size: 0.8em;
    text-transform: uppercase;
}

.dashboard-scope .db-ticket-event {
    margin: 10px 0;
    font-size: 1.4em;
    color: white;
}

.dashboard-scope .db-ticket-details {
    display: flex;
    gap: 20px;
    color: var(--db-muted);
    font-size: 0.9em;
}

.dashboard-scope .db-ticket-right {
    width: 200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
}

.dashboard-scope .db-qr-placeholder {
    font-size: 4em;
    color: white;
    margin-bottom: 15px;
    opacity: 0.8;
}

.dashboard-scope .db-btn-download {
    background: transparent;
    border: 1px solid var(--db-red);
    color: var(--db-red);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8em;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.dashboard-scope .db-btn-download:hover {
    background: var(--db-red);
    color: white;
} 
