.sys-toast {
    width: 280px;
    background: white;
    border-left: 5px solid #7b1fa2; /* Yahoo Purple */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 4px;
    animation: slideIn 0.3s ease-out;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.toast-header {
    background: #f8f9fa;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.toast-body {
    padding: 12px;
    font-size: 14px;
    color: #333;
}

.toast-action {
    margin-top: 10px;
    text-align: right;
}

.toast-action button {
    background: #7b1fa2;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
}

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