.save-confirmation-icon {
    position: absolute;
    top: 8px;
    left: -24px;
    animation: fadeInOut 2s ease-in-out;
    z-index: 1000;
}

.ticket-type-button {
    cursor: pointer;
    min-height: 150px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

    .ticket-type-button.selected {
        border: 3px solid var(--mud-palette-primary);
    }

    .ticket-type-button:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
        background-color: rgba(var(--mud-palette-primary-rgb), 0.08) !important;
    }

.icon-hover-style:hover {
    background-color: var(--mud-palette-action-default-hover);
    border-radius: 16px;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    80% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}