.custom-toast {
    position: fixed;
    top: 25cqw;
    right: -400px;
    background-color: #DC1641;
    color: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateX(0) scale(0.9);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Suisse Intl', sans-serif;
    font-weight: 400;
}

.custom-toast img {
    width: 24px;
    height: 24px;
    animation: rotateIn 0.6s ease-out;
}

.custom-toast.show {
    right: 20px;
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: slideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideIn {
    0% {
        transform: translateX(100%) scale(0.9);
        opacity: 0;
    }
    50% {
        transform: translateX(-10%) scale(1.1);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    0% {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

.toast-message {
    font-size: 14px;
    animation: fadeIn 0.3s ease-out 0.3s both;
    font-family: 'Suisse Intl', sans-serif;
    font-weight: 400;
}

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

.toast-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    justify-content: center;
}

.toast-button {
    padding: 6px 12px;
    background-color: #CF0A2C;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    font-family: "Suisse Intl";
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.toast-button:hover {
    background-color: #b8091f;
}

.toast-button:active {
    transform: scale(0.95);
}