#toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.toast {
    min-width: 260px;
    max-width: 360px;
    background: #f8f8f8;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 4px 6px 0 #000;
    transform: translateX(120%);
    opacity: 0;
    animation: slideIn 0.35s ease forwards;
    font-family: Arial, sans-serif;
}

.toast.hide {
    animation: slideOut 0.35s ease forwards;
}

.toast-icon {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
}

.toast-message {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    word-break: break-word;
}

/* Success */
.toast.success .toast-icon {
    color: #43b649;
}

/* Error */
.toast.error .toast-icon {
    color: #ef8a8a;
}

/* Warning */
.toast.warning .toast-icon {
    color: #f2c230;
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}