.ticket-dialog-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.ticket-dialog {
    background: #FFF;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: fadeInScale 0.2s ease-out;
}

.ticket-dialog-title {
    margin: 0;
    font-weight: 600;
}

.ticket-dialog-body {
    text-align: center;
    margin-top: 20px;
}

.ticket-dialog-success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #D1E7DD;
    color: #008055;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.ticket-dialog-ticket-number {
    margin-top: 12px;
    font-size: 14px;
}

.ticket-dialog-footer {
    margin-top: 24px;
    text-align: right;
}

@keyframes fadeInScale {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.d-none {
    display: none !important;
}
